代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/374804/2745337
cs enum.cs
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace gowk.common
{
public enum REO_GETOBJ
{
REO_GETOBJ_NO_INTERFACES =0x00000000,
REO_GETOBJ_POLEOBJ =0x00
www.eeworm.com/read/368084/2827086
c enum.c
/*++
Copyright (c) 1997-1998 Microsoft Corporation
Module Name:
ENUM.C
Abstract:
This source file contains the routines which enumerate the USB bus
and populate the TreeVie
www.eeworm.com/read/366702/2866303
c is_enum.c
// { dg-do "run" }
#include
struct A
{
double a;
double b;
};
class B
{ };
enum E
{
e0
};
template
bool
f()
{ return __is_enum(T); }
template
clas
www.eeworm.com/read/366702/2869970
c enum.c
// { dg-do assemble }
// GROUPS passed enums
template
struct templ
{
enum { val = 0 };
};
struct Foo
{
enum {
bar = 0,
len = templ::val
};
};
void func()
{
int s = Foo
www.eeworm.com/read/366702/2871830
c enum.c
// { dg-do assemble }
// PRMS Id: 4337
// Bug: Enums are not looked up to arbitrary depth.
struct W {
enum A { B };
};
struct X : public W
{};
struct Y : public X
{};
struct S
{
X::A a1;
Y:
www.eeworm.com/read/358714/2983823
c a_enum.c
/* crypto/asn1/a_enum.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/355697/3049406
c a_enum.c
/* crypto/asn1/a_enum.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/162614/5540125
cc is_enum.cc
// 2004-12-25 Paolo Carlini
//
// Copyright (C) 2004 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can
www.eeworm.com/read/431998/6840898