代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1459726
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/460691/1558540
pm enum.pm
# The documentation is at the __END__
package Win32::OLE::Enum;
1;
# everything is pure XS in Win32::OLE::Enum
# - new
# - DESTROY
#
# - All
# - Clone
# - Next
# - Reset
# - Skip
__E
www.eeworm.com/read/250390/4431644
cfg enum.cfg
-$A+
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J+
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;Dbi
www.eeworm.com/read/250390/4431647
dpr enum.dpr
program Enum;
uses
Forms,
Enum_U1 in 'Enum_U1.pas' {Form2};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm2, Form2);
Application.Run;
end.
www.eeworm.com/read/250390/4431657
dof enum.dof
[Compiler]
A=1
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=1
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
UnitAliases=WinTypes=Windows;
www.eeworm.com/read/250390/4431665
~dpr enum.~dpr
program Enum;
uses
Forms,
Enum_U1 in 'Enum_U1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
www.eeworm.com/read/248928/4462734
h enum.h
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer
*
* See http://www.asterisk.org for more information about
www.eeworm.com/read/247212/4484564
idl enum.idl
enum E {
A,
B,
C
};
interface foo {
void bar( in E e );
};