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

1 2 3

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p12.cpp 10 E1 = E0 + 1
  /external/clang/test/Sema/
warn-bad-function-cast.c 11 enum e { E1 } ef(void);
ms_bitfield_layout.c 177 typedef union E1 {
183 } E1;
185 // CHECK: Type: union E1
260 sizeof(E1) +
  /external/clang/test/CXX/class.access/class.friend/
p2-cxx03.cpp 8 enum E1 { };
12 X0<E1> x0d;
p3-cxx0x.cpp 8 enum E1 { };
12 X0<E1> x0d;
  /external/clang/test/SemaCXX/
warn-c++11-extensions.cpp 8 enum struct E1 { A, B }; // expected-warning {{scoped enumerations are a C++11 extension}}
literal-type.cpp 6 enum E { E1 };
8 static_assert(__is_literal(decltype(E1)), "fail");
default-assignment-operator.cpp 76 class E1 { // expected-error{{cannot define the implicit copy assignment operator for 'E1', because non-static const member 'a' can't use copy assignment operator}}
80 E1() : a(0) {}
84 E1 e1, e2; variable
87 e1 = e2; // expected-note{{assignment operator for 'E1' first required here}}
  /external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
p2-0x.cpp 9 enum E { E0, E1 };
19 case E1:
26 case E1:
33 case E1:
  /external/openssl/crypto/des/
fcrypt_b.c 89 register DES_LONG E0,E1;
96 E1=Eswap1;
  /external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
p3.cpp 31 enum E1 { one };
36 A operator >= (E1, E1);
37 A operator >= (E1, const E2);
39 E1 a;
46 template <typename T> A operator <= (E1, T);
  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 40 enum E { E1, E2, E3 };
deduction.cpp 156 enum E { E0, E1 };
  /external/llvm/unittests/ADT/
APIntTest.cpp 603 uint64_t E1 = 0x2CA7F46BF6569915ULL;
604 APInt A1(64, E1);
606 EXPECT_EQ(bool(E1 & (1ULL << i)),
  /ndk/tests/device/test-stlport_shared-exception/jni/
has_nothrow_constructor.cpp 28 struct E1
30 E1() throw(int) { throw int(); }
101 assert (NTEST (E1));
has_nothrow_assign.cpp 28 struct E1
30 E1& operator=(const E1&) throw(int) { throw int(); return *this; }
140 assert (NTEST (E1));
has_nothrow_copy-1.cpp 28 struct E1
30 E1(const E1&) throw(int) { throw int(); }
130 assert (NTEST (E1));
  /ndk/tests/device/test-stlport_static-exception/jni/
has_nothrow_constructor.cpp 28 struct E1
30 E1() throw(int) { throw int(); }
101 assert (NTEST (E1));
has_nothrow_assign.cpp 28 struct E1
30 E1& operator=(const E1&) throw(int) { throw int(); return *this; }
140 assert (NTEST (E1));
has_nothrow_copy-1.cpp 28 struct E1
30 E1(const E1&) throw(int) { throw int(); }
130 assert (NTEST (E1));
  /external/clang/test/CXX/temp/temp.res/temp.dep/
p3.cpp 12 namespace E1 {
  /external/clang/test/ASTMerge/Inputs/
enum1.c 2 enum E1 {
enum2.c 2 enum E1 {
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 61 struct E1 {
62 E1() noexcept = default;
63 E1(const E1&) noexcept = default;
64 E1(E1&&) noexcept = default;
65 E1 &operator=(const E1&) noexcept = default;
66 E1 &operator=(E1&&) noexcept = default
    [all...]
  /cts/tools/signature-tools/test/signature/comparator/
MethodCompareTests.java 135 CompilationUnit E1 = new CompilationUnit("a.E1",
137 "public class E1 extends E0 {}");
146 " public void m() throws E0, E1 {}" +
148 IApi fromApi = convert(E0, E1, C0);
149 IApi toApi = convert(E0, E1, C0_E1);
159 CompilationUnit E1 = new CompilationUnit("a.E1",
161 "public class E1 extends Exception {}");
170 " public void m() throws E0, E1 {}"
    [all...]

Completed in 455 milliseconds

1 2 3