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

1 2

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p9-0x.cpp 7 auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}} enumerator in enum:__anon23031
p8.cpp 7 enum { e3 } A::g() { } // expected-error{{cannot be defined in the result type}} \ enumerator in enum:__anon23030
  /external/clang/test/CodeGen/
2007-04-11-PR1321.c 7 unsigned int e3 : 17; member in struct:X
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapEqualsTester.java 50 Entry<K, V> e3 = getSubjectGenerator().samples().e3; local
51 other.put(e3.getKey(), e3.getValue());
62 entries.add(entry(null, samples.e3.getValue()));
73 entries.add(entry(null, samples.e3.getValue()));
86 entries.add(entry(samples.e3.getKey(), null));
97 entries.add(entry(samples.e3.getKey(), null));
ListAddAtIndexTester.java 65 getList().add(0, samples.e3);
66 expectAdded(0, samples.e3);
72 getList().add(0, samples.e3);
77 expectMissing(samples.e3);
83 getList().add(getNumElements() / 2, samples.e3);
84 expectAdded(getNumElements() / 2, samples.e3);
90 getList().add(getNumElements(), samples.e3);
91 expectAdded(getNumElements(), samples.e3);
117 getList().add(-1, samples.e3);
122 expectMissing(samples.e3);
    [all...]
ListSetTester.java 42 doTestSet(samples.e3);
61 doTestSet(samples.e3);
78 getList().set(-1, samples.e3);
89 getList().set(index, samples.e3);
100 getList().set(aValidIndex(), samples.e3);
111 getList().set(0, samples.e3);
MapPutTester.java 50 nullKeyEntry = entry(null, samples.e3.getValue());
51 nullValueEntry = entry(samples.e3.getKey(), null);
58 assertNull("put(notPresent, value) should return null", put(samples.e3));
59 expectAdded(samples.e3);
65 put(samples.e3);
70 expectMissing(samples.e3);
88 getMap().put(samples.e0.getKey(), samples.e3.getValue());
104 Entry<K, V> newEntry = entry(null, samples.e3.getValue());
177 Entry<K, V> newEntry = entry(getKeyForNullValue(), samples.e3.getValue());
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode_unittest.cc 28 ErrorCode e3 = sandbox.Trap(NULL, NULL); local
29 SANDBOX_ASSERT((e3.err() & SECCOMP_RET_ACTION) == SECCOMP_RET_TRAP);
62 ErrorCode e3(EPERM);
63 SANDBOX_ASSERT(!e1.Equals(e3));
70 SANDBOX_ASSERT(!e3.Equals(e4));
82 ErrorCode e3(EPERM);
83 SANDBOX_ASSERT(!e1.LessThan(e3));
84 SANDBOX_ASSERT( e3.LessThan(e1));
91 SANDBOX_ASSERT(e3.LessThan(e4));
  /external/clang/test/CodeGenCXX/
member-expressions.cpp 36 A::E e3 = A().Foo; local
pr12251.cpp 30 enum e3 { e3_a = 16 }; enum
31 e3 g3(e3 *x) {
mangle-ms-return-qualifiers.cpp 132 Enum* e3() { return 0; } function
133 // CHECK: "\01?e3@@YAPAW4Enum@@XZ"
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 28 enum {e3}; // expected-note{{unnamed type used in template argument was declared here}} enumerator in enum:N0::__anon23128
40 X<__typeof__(e3)*> x; // expected-warning{{template argument uses unnamed type}}
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 175 ExplodedHttpBodyElement e3; local
176 e3.type = blink::WebHTTPBody::Element::TypeData;
177 e3.data = "data the second";
178 frame_state->http_body.elements.push_back(e3);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 29 // TODO: rename e3, e4 => missing1, missing2
33 public final E e3; field in class:SampleElements
36 public SampleElements(E e0, E e1, E e2, E e3, E e4) {
40 this.e3 = e3;
71 Helpers.mapEntry(keys.e3, values.e3),
  /external/openssl/crypto/aes/
aes_wrap.c 214 static const unsigned char e3[] = { local
248 ret = AES_wrap_unwrap_test(kek, 256, NULL, e3, key, 16);
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 81 struct E3 {
82 E3() = default;
83 E3(const E3&) = default;
84 E3(E3&&) = default;
85 E3 &operator=(const E3&) = default;
86 E3 &operator=(E3&&) = default
89 E3 e3; variable
90 static_assert(noexcept(E3(), E3(E3()), E3(e3), e3 = E3(), e3 = e3), ""); variable
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.c 42 __declspec(deprecated) enum E3 { a, b, c } e; /* expected-note {{'e' has been explicitly marked deprecated here}} */
47 enum E3 e2; /* No warning expected, the deprecation follows the variable */
48 enum E3 e3 = e; /* expected-warning {{'e' is deprecated}} */ local
  /external/clang/test/Sema/
string-init.c 35 int e3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
  /external/clang/test/SemaCXX/
member-name-lookup.cpp 23 enum E3 { enumerator3 }; // expected-note 2{{member found by ambiguous name lookup}}
30 enum E3 { enumerator3_2 }; // expected-note 2{{member found by ambiguous name lookup}}
50 D::E3 e3; // expected-error{{multiple base classes}} local
66 E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types}} local
74 enum E3 { enumerator3 }; // expected-note 2 {{member found by ambiguous name lookup}}
81 enum E3 { enumerator3_2 }; // expected-note 2{{member found by ambiguous name lookup}}
106 D2::E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types} local
125 E3 e3; \/\/ expected-error{{member 'E3' found in multiple base classes of different types}} local
    [all...]
string-init.cpp 30 int e3[] = u"a"; // expected-error{{array initializer must be an initializer list}} local
abstract.cpp 47 C (**e3)[2]; // expected-error {{array of abstract class type 'C'}} variable
warn-sign-conversion.cpp 77 int e3 = 1 ? E : B; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} local
  /external/libsepol/src/
ebitmap.c 116 ebitmap_t e3; local
118 int rc = ebitmap_not(&e3, e2, maxbit);
121 rc = ebitmap_and(dst, e1, &e3);
122 ebitmap_destroy(&e3);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 49 constexpr enum E3 { V3 } e3 = V3; variable in typeref:enum:E3
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 54 template<> enum A<long long>::E : long long { e3, e4 }; // expected-error {{explicit specialization of 'E' after instantiation}} expected-note {{first required here}}
56 template<> enum class B<long long>::E { e3, e4 }; member in class:B::E
69 template<> enum class C<long long>::E : long long { e3, e4 }; member in class:C::E
70 C<long long>::E c0 = C<long long>::E::e3;
98 template<> enum class D<char>::E { e3 }; // expected-error {{explicit specialization of 'E' after instantiation}}
107 template<> friend enum D<double>::E { e3 }; // expected-error {{cannot define a type in a friend declaration}} enumerator in enum:C::F::D::E

Completed in 1816 milliseconds

1 2