Searched defs:E1 (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp12.cpp9 E1 = E0 + 1 enumerator in enum:__anon4012::__anon4013
/external/clang/test/Sema/
H A Dwarn-bad-function-cast.c11 enum e { E1 } ef(void); enumerator in enum:e
H A Dwarn-duplicate-enum.c30 E1, enumerator in enum:E
31 E2 = E1,
/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/over/over.built/
H A Dp1.cpp3 enum E1 { one }; enum
6 bool operator >= (E1, E1) {
10 bool operator >= (E1, const E2) {
14 bool test(E1 a, E1 b, E2 c) {
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp8 enum E { E0, E1 }; enumerator in enum:E
18 case E1:
25 case E1:
32 case E1:
/external/clang/test/CXX/temp/temp.res/temp.dep/
H A Dp3.cpp12 namespace E1 { namespace
/external/openssl/crypto/des/
H A Dfcrypt_b.c89 register DES_LONG E0,E1; local
96 E1=Eswap1;
/external/clang/test/SemaCXX/
H A Dliteral-type.cpp6 enum E { E1 }; enumerator in enum:E
8 static_assert(__is_literal(decltype(E1)), "fail");
H A Ddefault-assignment-operator.cpp76 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}} 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 Dwarn-unique-enum.cpp13 enum E { E1 = 4 }; enumerator in enum:E
H A Dclass.cpp37 enum E1 { en1, en2 }; enum in class:C
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 Doverloaded-builtin-operators.cpp13 enum E1 { }; enum
15 operator E1();
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp39 enum E { E1, E2, E3 }; enumerator in enum:rdar8980215::E
H A Ddeduction.cpp156 enum E { E0, E1 }; enumerator in enum:test14::E
/external/clang/test/ASTMerge/Inputs/
H A Denum1.c2 enum E1 { enum
H A Denum2.c2 enum E1 { enum
/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/CXX/special/class.copy/
H A Dp23-cxx11.cpp117 struct E1 : AmbiguousCopyAssign {}; // expected-note {{base class 'AmbiguousCopyAssign' has multiple copy}} struct in inherits:AmbiguousCopyAssign
129 template struct CopyAssign<E1>; // expected-note {{here}}
/external/clang/test/CXX/class.access/
H A Dp6.cpp126 enum Enum { E0, E1, E2 }; // expected-note 4 {{declared private here}} enumerator in enum:test5::A::Enum
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp37 constexpr enum E1 {}; // expected-error {{enum cannot be marked constexpr}} enum
/external/clang/test/Parser/
H A Ddeclarators.c110 enum E1 { e1 }: // expected-error {{expected ';'}} enum
H A Dcxx0x-attributes.cpp113 enum [[]] E1 {}; enum
115 enum [[]] E1;
120 enum [[]] E1 e; // expected-error {{an attribute list cannot appear here}}

Completed in 391 milliseconds

12