代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3276227
c enum.c
// PRMS Id: 4337
// Bug: Enums are not looked up to arbitrary depth.
// Build don't link:
struct W {
enum A { B };
};
struct X : public W
{};
struct Y : public X
{};
struct S
{
X::A a1;
Y::A
www.eeworm.com/read/339658/3296335
c enum.c
# include
void main()
{
/* 经过下面的定义后,默认有:blue=0 red=1 ... black=4 */
enum color {blue, red, yellow, purple, black};
enum color i, j, k, pri;
int n, loop;
n = 0;
for(i=blue;
www.eeworm.com/read/333629/3383338
tpl enum.tpl
{*
/**
* The contents of this file are subject to the SugarCRM Public License Version
* 1.1.3 ("License"); You may not use this file except in compliance with the
* License. You may obtain a
www.eeworm.com/read/329537/3430759
c enum.c
enum foo
bar ()
{
if (1)
{
func (1);
}
return SUCCESSFUL;
}
void
bar (enum foo)
{
if (1)
{
func (1);
}
}
www.eeworm.com/read/329537/3430823
c enum.c
enum foo
bar ()
{
if (1)
{
func (1);
}
return SUCCESSFUL;
}
void
bar (enum foo)
{
if (1)
{
func (1);
}
}
www.eeworm.com/read/328357/3444526
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/317330/3582212
java enum.java
/**
* $RCSfile$
* $Revision: 10195 $
* $Date: 2008-04-10 15:15:47 -0700 (Thu, 10 Apr 2008) $
*
* Copyright (C) 2008 Jive Software. All rights reserved.
*
* This software is published under the
www.eeworm.com/read/314636/3631072
java enum.java
// package de.enough.polish.java5;
import java.util.Hashtable;
/**
* A version of the 1.5 java.lang.Enum class for the Java ME VM.
*/
public class Enum {
private final int ordinal;
www.eeworm.com/read/314636/3631249
java enum.java
package de.enough.polish.java5;
import java.util.Hashtable;
/**
* A version of the 1.5 java.lang.Enum class for the Java ME VM.
*/
public class Enum {
private final int ordinal;
p