代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/326192/3473896
h xmlio.h
#ifndef __XMLIO_H__
#define __XMLIO_H__
#include "fastdb.h"
class dbXmlScanner
{
public:
enum {
MaxIdentSize = 256
};
enum token {
xml_ident,
xml_sconst,
xml_
www.eeworm.com/read/284616/4061674
h textureresource.h
#ifndef TEXTURERESOURCE_H_
#define TEXTURERESOURCE_H_
struct TextureResource
{
enum { Magic = 0xCAFECAFE };
enum { Version = 0x01 };
unsigned int magic;
unsigned int version;
int
www.eeworm.com/read/447738/1697137
s cofftag.s
/* This file was compiled from this C source:
char token =0;
enum token {
operator,
flags
};
enum token what= operator;
*/
.file "foo.c"
gcc2_compiled.:
___gnu_compiled_c:
www.eeworm.com/read/440906/1777792
c scoping9.c
// Bug: g++ silently mangles the second 'B' to 'A::B', so the definition is
// lost.
// Build don't link:
struct A {
enum B { };
};
struct C: public A {
enum B { };
void foo (C::B);
};
www.eeworm.com/read/440906/1782064
c 950921-1.c
typedef enum
{
a = (X) 0, /* { dg-error "undeclared|not integer|(parse|syntax) error" } */
b
} c;
typedef enum
{
d = (X) 0 /* { dg-error "undeclared|not integer|(parse|syntax) error" } */
} e;
www.eeworm.com/read/429426/1948683
sql bus.sql
SELECT VERSION();
USE test;
DROP TABLE bus;
-- DROP TABLE buses;
CREATE TABLE bus
(id varchar(5),
line enum('9','10','11'),
daytime enum('morning','evening', 'midday'),
temp flo
www.eeworm.com/read/410728/2204143
h ppc.h
typedef long Long;
/* The following enum is used to access the special registers in
the saved machine state. */
typedef enum
{
kDc_SavedPC = 0, /* really SRR0 */
kDc_SavedMSR = 1, /* real
www.eeworm.com/read/400494/2352287
tp libc.tp
\entry {enum mcheck{\_}status}{34}{\code {enum mcheck{\_}status}}
\entry {struct mstats}{36}{\code {struct mstats}}
\entry {struct obstack}{38}{\code {struct obstack}}
\entry {FILE}{83}{\code {FILE}}
www.eeworm.com/read/395929/2429469
s cofftag.s
/* This file was compiled from this C source:
char token =0;
enum token {
operator,
flags
};
enum token what= operator;
*/
.file "foo.c"
gcc2_compiled.:
___gnu_compiled_c:
www.eeworm.com/read/366702/2868438
c typedef9.c
// PR c++/34846
template struct __are_same { enum { __value = 0 }; };
template struct __are_same { enum { __value = 1 }; };
template struct