Searched refs:E2 (Results 1 - 25 of 82) sorted by relevance

1234

/external/clang/test/SemaCXX/
H A Dref-init-ambiguous.cpp3 enum E2 { }; enum
6 operator E2&(); // expected-note 3 {{candidate function}}
10 operator E2&(); // expected-note 3 {{candidate function}}
17 const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}}
20 void foo(const E2 &);// expected-note{{passing argument to parameter here}}
22 const E2 & re(C c) {
23 foo(c); // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}}
25 return c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}}
H A Dwarn-c++11-extensions.cpp9 enum class E2 { C, D }; // expected-warning {{scoped enumerations are a C++11 extension}} class
H A Dderived-to-base-ambig.cpp17 class E2 : public D2, public C2, public virtual A2 { }; class in inherits:D2,C2,A2
18 class F2 : public E2, public A2 { };
20 void g(E2* e2, F2* f2) {
29 void overload_okay(E2*);
H A Denum-bitfield.cpp11 enum E2 : int;
H A Dclass-names.cpp52 enum E2 { E2 }; enumerator in enum:E2
H A Dmember-name-lookup.cpp21 enum E2 { enumerator2 }; enum in struct:B
48 D::E2 e2 = D::enumerator2; // okay
64 E2 e2 = enumerator2; // okay
72 enum E2 { enumerator2 }; enum in struct:B2
104 D2::E2 e2 = D2::enumerator2; // okay
123 E2 e2 = enumerator2; // okay
H A Doverloaded-builtin-operators.cpp19 enum E2 { }; enum
21 operator E2();
76 operator E2&();
91 E2 e2r2;
H A Denum-scoped.cpp7 enum struct E2 { struct in class:E1
16 static_assert(sizeof(E2) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
260 enum class E2 : T;
H A Dnamespace-alias.cpp19 namespace E2 = N::
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dloopadsz.asm2 foo: a32 loop foo ; 67 E2 FD
3 bar: loop bar, ecx ; 67 E2 FD
6 baz: a16 loop baz ; 67 E2 FD
7 qux: loop qux, cx ; 67 E2 FD
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp69 struct E2 { struct
70 E2() noexcept(false) = default; // expected-error {{exception specification of explicitly defaulted default constructor does not match the calculated one}}
71 E2(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly defaulted copy constructor does not match the calculated one}}
72 E2(E2&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defaulted move constructor does not match the calculated one}}
73 E2 &operator=(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly defaulted copy assignment operator does not match the calculated one}}
74 E2 &operator=(E2
[all...]
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3.cpp32 enum E2 { two }; enum in namespace:bullet3
37 A operator >= (E1, const E2);
40 E2 b;
/external/clang/test/ASTMerge/Inputs/
H A Denum1.c9 enum E2 { enum
H A Denum2.c9 enum E2 { enum
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c31 E2 = E1, enumerator in enum:E
32 E3 = E2
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp40 enum E { E1, E2, E3 }; enumerator in enum:rdar8980215::E
42 template<typename T, E e = E2>
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefBranchChecker.cpp43 const Expr *E2 = FindExpr(ExI); local
44 if (E2) return E2;
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp146 struct E2 : AmbiguousMoveAssign { // expected-note {{base class 'AmbiguousMoveAssign' has multiple move}} struct in inherits:AmbiguousMoveAssign
147 E2 &operator=(E2 &&) = default; // expected-note {{here}}
158 template struct MoveAssign<E2>; // expected-note {{here}}
/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) \
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, otherwise
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \
52 type_if(T2, (!(E1) && (E2))), \
[all...]
/external/chromium_org/ppapi/generators/test_parser/
H A Denum.idl11 /* OK EnumItem(E2) */
12 E2 = 2
/external/clang/test/Parser/
H A DMicrosoftExtensions.c41 enum __declspec(deprecated) E2 { i, j, k }; /* expected-note {{'E2' has been explicitly marked deprecated here}} */
46 enum E2 e1; /* expected-warning {{'E2' is deprecated}} */
H A Ddeclarators.c113 enum E2 { e2 } : 4; // ok enum in struct:EnumBitfield
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dmodule-parsing.js87 module E2 at "http://where";
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/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp5.cpp15 enum alignas(1) E2 : char {}; // ok
/external/clang/test/CXX/temp/temp.res/temp.dep/
H A Dp3.cpp27 namespace E2 { namespace

Completed in 239 milliseconds

1234