HomeSort by relevance Sort by last modified time
    Searched refs:E1 (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/CXX/over/over.built/
p1.cpp 3 enum E1 { one };
6 bool operator >= (E1, E1) {
10 bool operator >= (E1, const E2) {
14 bool test(E1 a, E1 b, E2 c) {
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p12.cpp 9 E1 = E0 + 1
  /external/clang/test/CXX/class.access/class.friend/
p2-cxx03.cpp 8 enum E1 { };
12 X0<E1> x0d;
p3-cxx0x.cpp 8 enum E1 { };
12 X0<E1> x0d;
  /external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
p2-0x.cpp 8 enum E { E0, E1 };
18 case E1:
25 case E1:
32 case E1:
  /external/dropbear/libtommath/
bn_mp_sqrt.c 48 goto E1;
51 goto E1;
54 goto E1;
59 goto E1;
62 goto E1;
65 goto E1;
72 E1: mp_clear(&t2);
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 16 int y7 = 1.23E1; // expected-warning {{implicit conversion turns literal floating-point number into integer}}
17 int y8 = (1.23E1); // expected-warning {{implicit conversion turns literal floating-point number into integer}}
enum-scoped.cpp 3 enum class E1 {
11 E1 v1 = Val1; // expected-error{{undeclared identifier}}
12 E1 v2 = E1::Val1;
14 static_assert(sizeof(E1) == sizeof(int), "bad size");
15 static_assert(sizeof(E1::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
20 int x1 = E1::Val1; // expected-error{{cannot initialize a variable}}
27 E1 v5 = Val2; // expected-error{{cannot initialize a variable}}
34 int a2[E1::Val1]; // expected-error{{size of array has non-integer type}
40 e1 = -2147483648, \/\/ ok member in class:E1::E2::E4
46 e1 = 2147483647, \/\/ ok member in class:E1::E2::E4::E5
51 e1 = false, e2 = true, member in class:E1::E2::E4::E6
    [all...]
default-assignment-operator.cpp 76 class E1 { // expected-error{{cannot define the implicit default assignment operator for 'E1', because non-static const member 'a' can't use default assignment operator}}
80 E1() : a(0) {}
84 E1 e1, e2; variable
87 e1 = e2; // expected-note{{assignment operator for 'E1' first required here}}
literal-type.cpp 6 enum E { E1 };
8 static_assert(__is_literal(decltype(E1)), "fail");
MicrosoftExtensions.cpp 115 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
116 enum E1 : seventeen;
namespace-alias.cpp 17 namespace E1 = N::
overloaded-operator.cpp 62 struct E1 {
63 E1(Enum1) { }
71 float& operator==(E1, E2); // expected-note{{candidate function}}
73 void enum_test(Enum1 enum1, Enum2 enum2, E1 e1, E2 e2, Enum1 next_enum1) {
74 float &f1 = (e1 == e2);
76 float &f3 = (e1 == enum2);
  /external/clang/test/ASTMerge/Inputs/
enum1.c 2 enum E1 {
enum2.c 2 enum E1 {
  /external/clang/INPUTS/
c99-intconst-1.c 40 /* (T1 *) if E1, otherwise (T2 *) if E2. */
41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \
42 type_if(T2, (!(E1) && (E2))))
43 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3. */
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \
45 type_comb3(type_if(T1, (E1)), \
46 type_if(T2, (!(E1) && (E2))), \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
48 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwis
    [all...]
  /dalvik/tests/091-deep-interface-hierarchy/src/
Main.java 46 interface E1 extends D1, D2, D3, D4, D5 {}
52 interface F1 extends E1, E2, E3, E4, E5 {}
53 interface F2 extends E1, E2, E3, E4, E5 {}
54 interface F3 extends E1, E2, E3, E4, E5 {}
55 interface F4 extends E1, E2, E3, E4, E5 {}
56 interface F5 extends E1, E2, E3, E4, E5 {}
  /cts/tools/signature-tools/test/signature/comparator/
MethodCompareTests.java 135 CompilationUnit E1 = new CompilationUnit("a.E1",
137 "public class E1 extends E0 {}");
146 " public void m() throws E0, E1 {}" +
148 IApi fromApi = convert(E0, E1, C0);
149 IApi toApi = convert(E0, E1, C0_E1);
159 CompilationUnit E1 = new CompilationUnit("a.E1",
161 "public class E1 extends Exception {}");
170 " public void m() throws E0, E1 {}"
    [all...]
  /external/clang/test/CXX/temp/temp.res/temp.dep/
p3.cpp 12 namespace E1 {
  /external/clang/test/Sema/
MicrosoftExtensions.c 65 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
66 enum E1 : seventeen;
90 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; variable in typeref:enum:DE1
97 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
101 enum DE1 no; // no warning because E1 is not deprecated
enum.c 58 E0 = sizeof(enum e0 { E1 }), // expected-error {{nested redefinition}}
80 enum e1 (*bar)(void); // expected-warning{{ISO C forbids forward references to 'enum' types}}
83 enum e1 { YES, NO }; enum
85 static enum e1 badfunc(struct s1 *q) {
  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 39 enum E { E1, E2, E3 };
  /external/openssl/crypto/des/
des_locl.h 185 #define LOAD_DATA_tmp(R,S,u,t,E0,E1) \
186 { DES_LONG tmp; LOAD_DATA(R,S,u,t,E0,E1,tmp); }
188 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
190 u=t&E0; t&=E1; \
195 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
216 LOAD_DATA(R,S,u,t,E0,E1,u1); \
244 LOAD_DATA(R,S,u,t,E0,E1,u1); \
271 LOAD_DATA_tmp(R,S,u,t,E0,E1); \
290 LOAD_DATA(R,S,u,t,E0,E1,u1); \
319 LOAD_DATA(R,S,u,t,E0,E1,u1);
    [all...]
fcrypt_b.c 89 register DES_LONG E0,E1;
96 E1=Eswap1;
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 36 enum E : unsigned char { E5 = S(), E6, E10 = S() * 2, E1 = E5 / 5 };
78 static_assert(Val<bool, E1>::value == 1, ""); // ok

Completed in 3920 milliseconds

1 2 3