代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/209211/4983233
c pgw.c
/* thanks to Caerwyn Jones for this module */
#include
#include
#include
#include "dict.h"
enum {
Buflen=1000,
Maxaux=5,
};
/* Possible tags */
enum {
www.eeworm.com/read/209211/4983249
c oed.c
#include
#include
#include
#include "dict.h"
enum {
Buflen=1000,
Maxaux=5,
};
/* Possible tags */
enum {
A, /* author in quote (small caps) */
B, /* bold */
Ba, /* aut
www.eeworm.com/read/190666/5178523
c builtin-types-compatible-p.c
int i;
double d;
/* Make sure we return a constant. */
float rootbeer[__builtin_types_compatible_p (int, typeof(i))];
typedef enum { hot, dog, poo, bear } dingos;
typedef enum { janette, laura, ama
www.eeworm.com/read/162614/5527575
c builtin-types-compatible-p.c
int i;
double d;
/* Make sure we return a constant. */
float rootbeer[__builtin_types_compatible_p (int, typeof(i))];
typedef enum { hot, dog, poo, bear } dingos;
typedef enum { janette, laura, ama
www.eeworm.com/read/340665/3273294
c instantiate4.c
// { dg-do compile }
// Origin: Wolfgang Bangerth
// PR c++/10682: Typedef to enum template instantiation logic.
template
struct Foo {
enum E {a,b,c};
t
www.eeworm.com/read/340665/3279270
c builtin-types-compatible-p.c
int i;
double d;
/* Make sure we return a constant. */
float rootbeer[__builtin_types_compatible_p (int, typeof(i))];
typedef enum { hot, dog, poo, bear } dingos;
typedef enum { janette, laura, ama
www.eeworm.com/read/307164/3726688
c probe_os.c
#include "atlconf.h"
enum OSTYPE ProbeOS(int verb, char *targ)
{
int ierr;
char ln[1024], ln2[1024];
enum OSTYPE i, OS;
char *unam;
if (verb) printf("Probing to make operating system
www.eeworm.com/read/277819/4150752
cpp 2_9.cpp
#include
enum game_result {WIN, LOSE, TIE, CANCEL};
int main()
{
game_result result;
enum game_result omit = CANCEL;
int count;
for (count = WIN ; count
www.eeworm.com/read/444594/1732026
cs step.cs
namespace Skyiv.Ben.PushBox.Common
{
enum Direction { None, East, South, West, North } // 方向: 无 东 南 西 北
public enum Action { None, Create, Edit, Delete } // 设计: 无 创建 编辑 删除
/**////
www.eeworm.com/read/440906/1774922
c instantiate4.c
// { dg-do compile }
// Origin: Wolfgang Bangerth
// PR c++/10682: Typedef to enum template instantiation logic.
template
struct Foo {
enum E {a,b,c};
t