Searched defs:E2 (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/test/CXX/over/over.built/
H A Dp1.cpp4 enum E2 { two }; enum
10 bool operator >= (E1, const E2) { argument
14 bool test(E1 a, E1 b, E2 c) {
/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 Dclass-names.cpp52 enum E2 { E2 }; enumerator in enum:E2
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 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 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}}
H A Dconversion-function.cpp159 struct E2 { struct in namespace:source_locations
165 E2<int&> e2i; // expected-note{{in instantiation}}
H A Doverloaded-builtin-operators.cpp18 enum E2 { }; enum
20 operator E2();
75 operator E2&();
90 E2 e2r2;
H A Doverloaded-operator.cpp66 struct E2 { struct
67 E2(Enum2);
71 float& operator==(E1, E2); // expected-note{{candidate function}}
73 void enum_test(Enum1 enum1, Enum2 enum2, E1 e1, E2 e2, Enum1 next_enum1) {
/external/clang/test/CXX/temp/temp.res/temp.dep/
H A Dp3.cpp27 namespace E2 { namespace
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefBranchChecker.cpp43 const Expr *E2 = FindExpr(ExI); local
44 if (E2) return E2;
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp39 enum E { E1, E2, E3 }; enumerator in enum:rdar8980215::E
41 template<typename T, E e = E2>
/external/clang/test/ASTMerge/Inputs/
H A Denum1.c9 enum E2 { enum
H A Denum2.c9 enum E2 { enum
/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/special/class.copy/
H A Dp23-cxx11.cpp118 struct E2 : AmbiguousMoveAssign { // expected-note {{base class 'AmbiguousMoveAssign' has multiple move}} struct in inherits:AmbiguousMoveAssign
119 E2 &operator=(E2 &&) = default; // expected-note {{here}}
130 template struct MoveAssign<E2>; // expected-note {{here}}
/external/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp89 MachineBasicBlock::const_iterator E2 = MI; local
92 while (I != E && I != E2) {
/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.cpp44 enum E2 {} constexpr; // expected-error {{enum cannot be marked constexpr}} enum
/external/clang/test/Parser/
H A Ddeclarators.c112 enum E2 { e2 } : 4; // ok enum in struct:EnumBitfield
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c31 E2 = E1, enumerator in enum:E
32 E3 = E2
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp62 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context); local
63 if (E != E2 && E2->isLValue()) {
65 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
68 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
H A DSemaExprCXX.cpp3954 // can be converted to match an operand expression E2 of type T2 is defined
3956 // -- If E2 is an lvalue:
3959 // E1 can be converted to match E2 if E1 can be implicitly converted to
3976 // -- If E2 is an rvalue, or if the conversion above cannot be done:
3977 // -- if E1 and E2 have class type, and the underlying class types are
3987 // E1 can be converted to match E2 if the class of T2 is the
4007 // -- Otherwise: E1 can be converted to match E2 if E1 can be
4008 // implicitly converted to the type that expression E2 would have
4009 // if E2 were converted to an rvalue (or the type it has, if E2 i
4389 FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2, bool *NonStandardCompositeType) argument
[all...]
/external/clang/lib/AST/
H A DASTImporter.cpp253 Expr *E1, Expr *E2) {
254 if (!E1 || !E2)
255 return E1 == E2;
252 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, Expr *E1, Expr *E2) argument
/external/svox/pico/lib/
H A Dpicopam.c207 picoos_int8 e2_syllable_word_start; /* E2 */
302 #define E2 33 macro
1802 outVect[T_E2] = inVect[E2];
3577 case E2:/*processor for E2*/
3594 pam->sSyllFeats[nI].phoneV[E2]
4324 pam->sSyllFeats[pam->nCurrSyllable].phoneV[E2]
4692 = pam->sSyllFeats[pam->nCurrSyllable - 1].phoneV[E2];
4754 = pam->sSyllFeats[pam->nCurrSyllable + 1].phoneV[E2];

Completed in 522 milliseconds

12