Searched refs:E1 (Results 1 - 25 of 102) sorted by relevance

12345

/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp12.cpp10 E1 = E0 + 1 enumerator in enum:__anon18345::__anon18346
/external/clang/test/CXX/class.access/class.friend/
H A Dp2-cxx03.cpp8 enum E1 { }; enum
12 X0<E1> x0d;
H A Dp3-cxx0x.cpp8 enum E1 { }; enum
12 X0<E1> x0d;
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp9 enum E { E0, E1 }; enumerator in enum:E
19 case E1:
26 case E1:
33 case E1:
/external/clang/test/SemaCXX/
H A Dwarn-c++11-extensions.cpp8 enum struct E1 { A, B }; // expected-warning {{scoped enumerations are a C++11 extension}} struct
H A Dwarn-literal-conversion.cpp16 int y7 = 1.23E1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 12.3 to 12}}
17 int y8 = (1.23E1); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 12.3 to 12}}
H A Ddefault-assignment-operator.cpp76 class E1 { // expected-error{{cannot define the implicit copy assignment operator for 'E1', because non-static const member 'a' can't use copy assignment operator}} class
80 E1() : a(0) {} function in class:E1
84 E1 e1, e2;
87 e1 = e2; // expected-note{{assignment operator for 'E1' first required here}}
H A Denum-scoped.cpp3 enum class E1 { class
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
[all...]
H A Dliteral-type.cpp6 enum E { E1 }; enumerator in enum:E
8 static_assert(__is_literal(decltype(E1)), "fail");
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3.cpp31 enum E1 { one }; enum in namespace:bullet3
36 A operator >= (E1, E1);
37 A operator >= (E1, const E2);
39 E1 a;
46 template <typename T> A operator <= (E1, T);
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp61 struct E1 { struct
62 E1() noexcept = default;
63 E1(const E1&) noexcept = default;
64 E1(E1&&) noexcept = default;
65 E1 &operator=(const E1&) noexcept = default;
66 E1 &operator=(E1
[all...]
/external/clang/test/ASTMerge/Inputs/
H A Denum1.c2 enum E1 { enum
H A Denum2.c2 enum E1 { enum
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c30 E1, enumerator in enum:E
31 E2 = E1,
H A Dms_bitfield_layout.c177 typedef union E1 { union
183 } E1; typedef in typeref:union:E1
185 // CHECK: Type: union E1
260 sizeof(E1) +
H A Dwarn-bad-function-cast.c11 enum e { E1 } ef(void); enumerator in enum:e
H A DMicrosoftExtensions.c62 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
63 enum E1 : seventeen;
103 enum DE1 no; // no warning because E1 is not deprecated
/external/clang/INPUTS/
H A Dc99-intconst-1.c40 /* (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, otherwis
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h188 R_SExpr reduceCode(Code &Orig, R_SExpr E0, R_SExpr E1) { argument
189 return new (Arena) Code(Orig, E0, E1);
191 R_SExpr reduceField(Field &Orig, R_SExpr E0, R_SExpr E1) { argument
192 return new (Arena) Field(Orig, E0, E1);
195 R_SExpr reduceApply(Apply &Orig, R_SExpr E0, R_SExpr E1) { argument
196 return new (Arena) Apply(Orig, E0, E1);
198 R_SExpr reduceSApply(SApply &Orig, R_SExpr E0, R_SExpr E1) { argument
199 return new (Arena) SApply(Orig, E0, E1);
214 R_SExpr reduceStore(Store &Orig, R_SExpr E0, R_SExpr E1) { argument
215 return new (Arena) Store(Orig, E0, E1);
217 reduceArrayIndex(ArrayIndex &Orig, R_SExpr E0, R_SExpr E1) argument
220 reduceArrayAdd(ArrayAdd &Orig, R_SExpr E0, R_SExpr E1) argument
226 reduceBinaryOp(BinaryOp &Orig, R_SExpr E0, R_SExpr E1) argument
337 reduceCode(Code &Orig, R_SExpr E0, R_SExpr E1) argument
340 reduceField(Field &Orig, R_SExpr E0, R_SExpr E1) argument
343 reduceApply(Apply &Orig, R_SExpr E0, R_SExpr E1) argument
346 reduceSApply(SApply &Orig, R_SExpr E0, R_SExpr E1) argument
353 reduceStore(Store &Orig, R_SExpr E0, R_SExpr E1) argument
354 reduceArrayIndex(Store &Orig, R_SExpr E0, R_SExpr E1) argument
357 reduceArrayAdd(Store &Orig, R_SExpr E0, R_SExpr E1) argument
361 reduceBinaryOp(BinaryOp &Orig, R_SExpr E0, R_SExpr E1) argument
426 compareByCase(SExpr *E1, SExpr* E2) argument
452 compare(SExpr *E1, SExpr* E2) argument
466 compareExprs(SExpr *E1, SExpr* E2) argument
[all...]
/external/llvm/test/MC/ARM/
H A Ddirective-even.s27 @ CHECK: 0000: 700020E1 00000000 00007000 20E1
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dmodule-parsing.js86 module E1 at "http://where"
88 module E3 = E1
150 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp40 enum E { E1, E2, E3 }; enumerator in enum:rdar8980215::E
/external/openssl/crypto/des/
H A Ddes_locl.h185 #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,u
[all...]
/external/chromium_org/ppapi/generators/test_parser/
H A Denum.idl9 /* OK EnumItem(E1) */
10 E1 = 1,
/external/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp36 enum E : unsigned char { E5 = S(), E6, E10 = S() * 2, E1 = E5 / 5 };
78 static_assert(Val<bool, E1>::value == 1, ""); // ok

Completed in 886 milliseconds

12345