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

1 2 3

  /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:__anon6204
p8.cpp 7 enum { e3 } A::g() { } // expected-error{{can not be defined in the result type}} \ enumerator in enum:__anon6203
  /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/clang/test/CodeGenCXX/
member-expressions.cpp 36 A::E e3 = A().Foo; local
catch-undef-behavior.cpp 161 enum E3 { e3a = (1u << 31) - 1 } e3; variable in typeref:enum:E3
177 // CHECK: %[[E3:.*]] = icmp ule i32 {{.*}}, 2147483647
178 // CHECK: br i1 %[[E3]]
180 int c = e3;
214 // CHECK: %[[E3:.*]] = icmp eq i64 %[[MISALIGN]], 0
215 // CHECK: %[[E123:.*]] = and i1 %[[E12]], %[[E3]]
mangle-ms-return-qualifiers.cpp 132 Enum* e3() { return 0; } function
133 // CHECK: "\01?e3@@YAPAW4Enum@@XZ"
pr12251.cpp 30 enum e3 { e3_a = 16 }; enum
31 e3 g3(e3 *x) {
  /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::__anon6232
40 X<__typeof__(e3)*> x; // expected-warning{{template argument uses unnamed type}}
  /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);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 47 int e3 = d1 - d2; local
49 int f1 = (e1 << 1) + e3;
51 int f3 = e1 - (e3 << 1);
armVCM4P10_TransformResidual4x4.c 48 int e3 = d1 + (d3>>1); local
49 int f0 = e0 + e3;
52 int f3 = e0 - e3;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElementTest.java 100 SimpleElement e3 = new SimpleElement("android.view.CheckBox", local
104 e3.addAttribute(new SimpleAttribute("uri2", "name2", "value2"));
105 e3.addAttribute(new SimpleAttribute("uri3", "name3", "value3"));
107 e.addInnerElement(e3);
173 SimpleElement e3 = new SimpleElement("android.view.CheckBox", local
177 e3.addAttribute(new SimpleAttribute("uri2", "name2", "value2"));
178 e3.addAttribute(new SimpleAttribute("uri3", "name3", "value3"));
180 e.addInnerElement(e3);
199 new SimpleElement[] { e, e2, e3 },
  /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 61 __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}} 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...]
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 698 milliseconds

1 2 3