/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
D | p2.cpp | 69 struct E2 { struct 70 …E2() noexcept(false) = default; // expected-error {{exception specification of explicitly defaulte… 71 …E2(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly… 72 …E2(E2&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defa… 73 …E2 &operator=(const E2&) noexcept(false) = default; // expected-error {{exception specification of… 74 …E2 &operator=(E2&&) noexcept(false) = default; // expected-error {{exception specification of expl… 75 …~E2() noexcept(false) = default; // expected-error {{exception specification of explicitly default…
|
/external/clang/test/SemaCXX/ |
D | ref-init-ambiguous.cpp | 3 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 initializ… in test() 20 void foo(const E2 &);// expected-note{{passing argument to parameter here}} 22 const E2 & re(C c) { in re()
|
D | member-name-lookup.cpp | 21 enum E2 { enumerator2 }; enum 48 D::E2 e2 = D::enumerator2; // okay in test_lookup() 64 E2 e2 = enumerator2; // okay in test_lookup() 72 enum E2 { enumerator2 }; enum 104 D2::E2 e2 = D2::enumerator2; // okay in test_virtual_lookup() 123 E2 e2 = enumerator2; // okay in test_virtual_lookup()
|
D | derived-to-base-ambig.cpp | 17 class E2 : public D2, public C2, public virtual A2 { }; class 18 class F2 : public E2, public A2 { }; 20 void g(E2* e2, F2* f2) { in g() 29 void overload_okay(E2*);
|
D | overloaded-builtin-operators.cpp | 19 enum E2 { }; enum 21 operator E2(); 76 operator E2&(); 91 E2 e2r2; in g()
|
D | enum-scoped.cpp | 7 enum struct E2 { enum 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}}
|
D | class-names.cpp | 52 enum E2 { E2 }; enumerator
|
D | overloaded-operator.cpp | 66 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) { in enum_test()
|
D | enum-bitfield.cpp | 11 enum E2 : int;
|
/external/clang/INPUTS/ |
D | c99-intconst-1.c | 41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument 42 type_if(T2, (!(E1) && (E2)))) 44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument 46 type_if(T2, (!(E1) && (E2))), \ 47 type_if(T3, (!(E1) && !(E2) && (E3)))) 50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument 52 type_if(T2, (!(E1) && (E2))), \ 53 type_if(T3, (!(E1) && !(E2) && (E3))), \ 54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4)))) 57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument [all …]
|
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/ |
D | p3.cpp | 10 enum E2 { two }; enum 15 A operator >= (E1, const E2); 18 E2 b;
|
/external/clang/test/CXX/special/class.copy/ |
D | p23-cxx11.cpp | 118 struct E2 : AmbiguousMoveAssign { // expected-note {{base class 'AmbiguousMoveAssign' has multiple … struct 119 E2 &operator=(E2 &&) = default; // expected-note {{here}} 130 template struct MoveAssign<E2>; // expected-note {{here}}
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | UndefBranchChecker.cpp | 43 const Expr *E2 = FindExpr(ExI); in FindExpr() local 44 if (E2) return E2; in FindExpr()
|
/external/clang/test/SemaTemplate/ |
D | instantiate-non-type-template-parameter.cpp | 40 enum E { E1, E2, E3 }; enumerator 42 template<typename T, E e = E2>
|
/external/clang/test/Sema/ |
D | warn-duplicate-enum.c | 31 E2 = E1, enumerator 32 E3 = E2
|
/external/dropbear/libtommath/ |
D | bn_mp_sqrt.c | 40 goto E2; in mp_sqrt() 73 E2: mp_clear(&t1); in mp_sqrt()
|
/external/llvm/test/CodeGen/X86/ |
D | nontemporal.ll | 10 %E2 = add <2 x i64> %E, <i64 1, i64 2> 11 store <2 x i64> %E2, <2 x i64>* %cast1, align 16, !nontemporal !0
|
D | avx2-nontemporal.ll | 10 %E2 = add <4 x i64> %E, <i64 1, i64 2, i64 3, i64 4> 11 store <4 x i64> %E2, <4 x i64>* %cast1, align 16, !nontemporal !0
|
/external/v8/test/mjsunit/harmony/ |
D | module-parsing.js | 87 module E2 at "http://where"; 145 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU
|
/external/clang/test/Parser/ |
D | MicrosoftExtensions.c | 60 enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{declared here}} enum 66 enum E2 e1; // expected-warning {{'E2' is deprecated}} in deprecated_enum_test()
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-ivars-1.mm | 39 enum e E2; 75 enum e E2;
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/ |
D | fr-FR_klex.pkb | 21 …E2*%GL%E2H!5"J#84&>5%E2*%GL%>!5%E2"*#85&>5%E2*%GL%D!L>86&>5%E2*%GL%!D<JO87&>5%E2*%GL%D!+E… 641 E2*>1A!IQreconnu $2'>1A!I reconnue 644 E2*>1A!I"J#Q 673 E2,;?'@NE!9Qréguliers#
|
/external/icu4c/data/unidata/ |
D | FractionalUCA.txt | 133 06E2; [,,] 800 20E2; [, B3, 05] 1890 298B; [0A E2, 05, 05] 2815 0F38; [0D 52 E2, 05, 05] 2873 19E2; [0D 53 D0, 05, 05] 3100 21BA; [0D 5B E2, 05, 05] 3177 21E2; [0D 5D 16, 05, 05] 3459 2253; [0D 76 E2, 05, 05] 3565 22E2; [0D 78 56, 05, 05][, A5, 05] 3734 22E8; [0D 7A E2, 05, 05] [all …]
|
/external/clang/test/ASTMerge/Inputs/ |
D | enum2.c | 9 enum E2 { enum
|
D | enum1.c | 9 enum E2 { enum
|