Searched refs:E3 (Results 1 - 25 of 58) sorted by relevance

123

/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp81 struct E3 { struct
82 E3() = default;
83 E3(const E3&) = default;
84 E3(E3&&) = default;
85 E3 &operator=(const E3&) = default;
86 E3 &operator=(E3
[all...]
/external/clang/test/SemaCXX/
H A Denum-bitfield.cpp12 enum E3 : Integer;
H A Dmember-name-lookup.cpp23 enum E3 { enumerator3 }; // expected-note 2{{member found by ambiguous name lookup}} enum in struct:B
30 enum E3 { enumerator3_2 }; // expected-note 2{{member found by ambiguous name lookup}} enum in struct:C
50 D::E3 e3; // expected-error{{multiple base classes}}
66 E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types}}
74 enum E3 { enumerator3 }; // expected-note 2 {{member found by ambiguous name lookup}} enum in struct:B2
81 enum E3 { enumerator3_2 }; // expected-note 2{{member found by ambiguous name lookup}} enum in struct:C2
106 D2::E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types}}
125 E3 e
[all...]
H A Denum-scoped.cpp22 enum E3 : char {
26 E3 v4 = Val2;
29 static_assert(sizeof(E3) == 1, "bad size");
/external/clang/test/ASTMerge/Inputs/
H A Denum1.c16 enum E3 { enum
H A Denum2.c16 enum E3 { enum
/external/clang/test/Parser/
H A DMicrosoftExtensions.c61 __declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{declared here}}
67 enum E3 e2; // No warning expected, the deprecation follows the variable
68 enum E3 e3 = e; // expected-warning {{'e' is deprecated}}
H A Dcxx0x-attributes.cpp155 enum [[]] E3 : int;
/external/clang/INPUTS/
H A Dc99-intconst-1.c43 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3. */
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
48 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwise
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \
53 type_if(T3, (!(E1) && !(E2) && (E3))), \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
55 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwise
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \
60 type_if(T3, (!(E1) && !(E2) && (E3))), \
[all...]
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c32 E3 = E2 enumerator in enum:E
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp40 enum E { E1, E2, E3 }; enumerator in enum:rdar8980215::E
/external/chromium_org/ppapi/generators/test_parser/
H A Denum.idl17 E3 = 3,
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp121 struct E3 : DeletedCopyAssign {}; // expected-note {{base class 'DeletedCopyAssign' has a deleted copy}} struct in inherits:DeletedCopyAssign
131 template struct CopyAssign<E3>; // expected-note {{here}}
/external/v8/test/mjsunit/harmony/
H A Dmodule-parsing.js88 module E3 = E1.F
145 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dmodule-parsing.js88 module E3 = E1
150 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLoc.cpp29 for (SmallVectorImpl<unsigned char>::const_iterator I3 = I2->Loc.begin(), E3 = I2->Loc.end(); I3 != E3; ++I3) {
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp5.cpp15 enum alignas(4) E3 { e3 = 0 }; // ok
/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior.cpp161 enum E3 { e3a = (1u << 31) - 1 } e3; enum
177 // CHECK: %[[E3:.*]] = icmp ule i32 {{.*}}, 2147483647
178 // CHECK: br i1 %[[E3]]
214 // CHECK: %[[E3:.*]] = icmp eq i64 %[[MISALIGN]], 0
215 // CHECK: %[[E123:.*]] = and i1 %[[E12]], %[[E3]]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp49 constexpr enum E3 { V3 } e3 = V3; enum
/external/chromium_org/remoting/tools/win/
H A Dchromoting-set-channel.bat29 set REGKEY="HKLM\SOFTWARE\Google\Update\ClientState\{B210701E-FFC4-49E3-932B-370728C72662}"
/external/chromium_org/media/cast/
H A Dcast_defines.h69 static const double kMagicFractionalUnit = 4.294967296E3;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-8.js73 if(a.total>=2E3) {
/external/v8/test/mjsunit/compiler/
H A Dregress-8.js73 if(a.total>=2E3) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
H A Doptions.js98 }, 1E3
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
H A Doptions.js98 }, 1E3

Completed in 455 milliseconds

123