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

12

/external/clang/test/SemaCXX/
H A Dwarn-c++11-extensions.cpp9 enum class E2 { C, D }; // expected-warning {{scoped enumerations are a C++11 extension}} class
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 { }; // expected-warning{{direct base 'C2' is inaccessible due to ambiguity:\n class E2 -> class D2 -> class C2\n class E2 -> class C2}} class in inherits:D2,C2,A2
18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to ambiguity:\n class F2 -> class E2 -> class D2 -> class B2 -> class A2\n class F2 -> class 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
/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/compiler-rt/test/cfi/
H A Dsimple-pass.cpp71 struct E2 : virtual E { struct in inherits:E
117 e = new 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/temp/temp.res/temp.dep/
H A Dp3.cpp27 namespace E2 { namespace
/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/llvm/unittests/ADT/
H A DAPIntTest.cpp811 integerPart E2[4] = { local
817 APInt A2(integerPartWidth*4, E2);
820 EXPECT_EQ(bool(E2[i] & (1ULL << j)),
/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/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp93 MachineBasicBlock::const_iterator E2 = MI; local
96 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.cpp45 enum E2 {} constexpr; // expected-error {{enum cannot be marked constexpr}} enum
/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/test/Parser/
H A Ddeclarators.c114 enum E2 { e2 } : 4; // ok enum in struct:EnumBitfield
H A Drecovery.cpp147 enum E2 { enum in struct:MissingBrace::S::PR17084::TempID
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c31 E2 = E1, enumerator in enum:E
32 E3 = E2
/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt_aes.cpp234 static const unsigned int E2[256] = { variable
643 E2[(block[(i+C2)%Nb] >> 8) & 0xFF] ^ \
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h43 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { argument
44 return til::EqualsComparator::compareExprs(E1, E2);
47 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { argument
52 return isa<til::Wildcard>(E2);
53 if (isa<til::Wildcard>(E2))
56 return til::MatchComparator::compareExprs(E1, E2);
59 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { argument
63 const auto *PE2 = dyn_cast_or_null<til::Project>(E2);
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp47 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context); local
48 if (E != E2 && E2->isLValue()) {
50 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
53 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior.cpp176 enum E2 { e2a = -1, e2b = 64 } e2; enum
188 // CHECK: %[[E2:.*]] = and i1 %[[E2HI]], %[[E2LO]]
189 // CHECK: br i1 %[[E2]]
213 // CHECK: %[[E2:.*]] = icmp eq i64 %[[MISALIGN]], 0
214 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
233 // CHECK: %[[E2:.*]] = icmp uge i64 %[[SIZE]], 24
238 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]

Completed in 701 milliseconds

12