HomeSort by relevance Sort by last modified time
    Searched defs:E2 (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/clang/test/SemaCXX/
ref-init-ambiguous.cpp 3 enum E2 { };
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}} local
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}
    [all...]
warn-c++11-extensions.cpp 9 enum class E2 { C, D }; // expected-warning {{scoped enumerations are a C++11 extension}}
class-names.cpp 50 enum E e2; variable in typeref:enum:E
52 enum E2 { E2 };
derived-to-base-ambig.cpp 17 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}}
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) {
22 o2 = e2;
29 void overload_okay(E2*);
member-name-lookup.cpp 21 enum E2 { enumerator2 };
48 D::E2 e2 = D::enumerator2; // okay local
64 E2 e2 = enumerator2; // okay local
72 enum E2 { enumerator2 };
104 D2::E2 e2 = D2::enumerator2; // okay local
123 E2 e2 = enumerator2; // oka local
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p3.cpp 15 enum E2 { e2 }; enumerator in enum:B::E2
34 using D::E2;
35 using D::e2;
  /external/libcxx/test/std/language.support/support.exception/except.nested/
rethrow_if_nested.pass.cpp 53 class E2 : public std::nested_exception {};
54 class E : public E1, public E2 {};
  /external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
p3.cpp 32 enum E2 { two };
37 A operator >= (E1, const E2);
40 E2 b;
  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 40 enum E { E1, E2, E3 };
42 template<typename T, E e = E2>
  /external/compiler-rt/test/cfi/
simple-pass.cpp 71 struct E2 : virtual E {
117 e = new E2;
  /external/clang/test/CXX/temp/temp.res/temp.dep/
p3.cpp 27 namespace E2 {
  /prebuilts/go/darwin-x86/src/math/big/
arith_386.s 65 JMP E2
74 E2: CMPL BX, BP // i < n
arith_arm.s 45 B E2
51 E2:
arith_amd64.s 127 JLE E2 // if n <= 0 goto E2
140 E2: NEGQ CX
  /prebuilts/go/linux-x86/src/math/big/
arith_386.s 65 JMP E2
74 E2: CMPL BX, BP // i < n
arith_arm.s 45 B E2
51 E2:
arith_amd64.s 127 JLE E2 // if n <= 0 goto E2
140 E2: NEGQ CX
  /external/clang/test/ASTMerge/Inputs/
enum1.c 9 enum E2 {
enum2.c 9 enum E2 {
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 69 struct E2 {
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&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defaulted (…)
    [all...]
  /external/clang/test/Sema/
attr-mode-enums.c 14 typedef enum __attribute__((mode(V8HI))) { E2 } RejectedType2; // expected-error{{mode 'V8HI' is not supported for enumeration types}}
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 47 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
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/CXX/class.access/
p6.cpp 126 enum Enum { E0, E1, E2 }; // expected-note 4 {{declared private here}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 52 enum E2 {} constexpr; // expected-error {{enum cannot be marked constexpr}}
  /external/clang/test/CXX/special/class.copy/
p23-cxx11.cpp 146 struct E2 : AmbiguousMoveAssign { // expected-note {{base class 'AmbiguousMoveAssign' has multiple move}}
147 E2 &operator=(E2 &&) = default; // expected-note {{here}}
158 template struct MoveAssign<E2>; // expected-note {{here}}

Completed in 785 milliseconds

1 2 3 4