Home
last modified time | relevance | path

Searched refs:E2 (Results 1 – 25 of 118) sorted by relevance

12345

/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp69 struct E2 { struct
70E2() noexcept(false) = default; // expected-error {{exception specification of explicitly defaulte…
71E2(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly…
72E2(E2&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defa…
73E2 &operator=(const E2&) noexcept(false) = default; // expected-error {{exception specification of…
74E2 &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/
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 initializ… in test()
20 void foo(const E2 &);// expected-note{{passing argument to parameter here}}
22 const E2 & re(C c) { in re()
Dmember-name-lookup.cpp21 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()
Dderived-to-base-ambig.cpp17 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*);
Doverloaded-builtin-operators.cpp19 enum E2 { }; enum
21 operator E2();
76 operator E2&();
91 E2 e2r2; in g()
Denum-scoped.cpp7 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}}
Dclass-names.cpp52 enum E2 { E2 }; enumerator
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) { in enum_test()
Denum-bitfield.cpp11 enum E2 : int;
/external/clang/INPUTS/
Dc99-intconst-1.c41 #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/
Dp3.cpp10 enum E2 { two }; enum
15 A operator >= (E1, const E2);
18 E2 b;
/external/clang/test/CXX/special/class.copy/
Dp23-cxx11.cpp118 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/
DUndefBranchChecker.cpp43 const Expr *E2 = FindExpr(ExI); in FindExpr() local
44 if (E2) return E2; in FindExpr()
/external/clang/test/SemaTemplate/
Dinstantiate-non-type-template-parameter.cpp40 enum E { E1, E2, E3 }; enumerator
42 template<typename T, E e = E2>
/external/clang/test/Sema/
Dwarn-duplicate-enum.c31 E2 = E1, enumerator
32 E3 = E2
/external/dropbear/libtommath/
Dbn_mp_sqrt.c40 goto E2; in mp_sqrt()
73 E2: mp_clear(&t1); in mp_sqrt()
/external/llvm/test/CodeGen/X86/
Dnontemporal.ll10 %E2 = add <2 x i64> %E, <i64 1, i64 2>
11 store <2 x i64> %E2, <2 x i64>* %cast1, align 16, !nontemporal !0
Davx2-nontemporal.ll10 %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/
Dmodule-parsing.js87 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/
DMicrosoftExtensions.c60 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/
Drewrite-modern-ivars-1.mm39 enum e E2;
75 enum e E2;
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_klex.pkb21E2*%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!9Q réguliers#
/external/icu4c/data/unidata/
DFractionalUCA.txt133 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/
Denum2.c9 enum E2 { enum
Denum1.c9 enum E2 { enum

12345