Searched defs:e3 (Results 1 - 25 of 88) sorted by relevance

1234

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp9-0x.cpp7 auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}} enumerator in enum:__anon1558
H A Dp8.cpp7 enum { e3 } A::g() { } // expected-error{{cannot be defined in the result type}} \ enumerator in enum:__anon1557
/external/clang/test/CodeGen/
H A D2007-04-11-PR1321.c7 unsigned int e3 : 17; member in struct:X
/external/clang/test/CodeGenCXX/
H A Dmember-expressions.cpp36 A::E e3 = A().Foo; local
H A Dpr12251.cpp30 enum e3 { e3_a = 16 }; enum
31 e3 g3(e3 *x) {
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
H A Dp2.cpp28 enum {e3}; // expected-note{{unnamed type used in template argument was declared here}} enumerator in enum:N0::__anon1669
40 X<__typeof__(e3)*> x; // expected-warning{{template argument uses unnamed type}}
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMultisetFauxverideShim.java86 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) { argument
100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) { argument
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { argument
133 E e3,
130 of( E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) argument
H A DImmutableSortedSetFauxverideShim.java84 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) { argument
99 E e1, E e2, E e3, E e4) {
114 E e1, E e2, E e3, E e4, E e5) {
129 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
98 of( E e1, E e2, E e3, E e4) argument
113 of( E e1, E e2, E e3, E e4, E e5) argument
128 of( E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) argument
H A DImmutableSet.java115 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { argument
116 return construct(3, e1, e2, e3);
126 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { argument
127 return construct(4, e1, e2, e3, e4);
137 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { argument
138 return construct(5, e1, e2, e3, e4, e5);
149 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, argument
155 elements[2] = e3;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSet.java59 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { argument
60 return create(e1, e2, e3);
64 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { argument
65 return create(e1, e2, e3, e4);
69 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { argument
70 return create(e1, e2, e3, e4, e5);
74 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) { argument
77 Collections.addAll(all, e1, e2, e3, e4, e5, e6);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSetTest.java52 @Override protected Set<String> of(String e1, String e2, String e3) { argument
53 return ImmutableSet.of(e1, e2, e3);
57 String e1, String e2, String e3, String e4) {
58 return ImmutableSet.of(e1, e2, e3, e4);
62 String e1, String e2, String e3, String e4, String e5) {
63 return ImmutableSet.of(e1, e2, e3, e4, e5);
66 @Override protected Set<String> of(String e1, String e2, String e3, argument
68 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
56 of( String e1, String e2, String e3, String e4) argument
61 of( String e1, String e2, String e3, String e4, String e5) argument
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp89 E3 e3; variable
90 static_assert(noexcept(E3(), E3(E3()), E3(e3), e3 = E3(), e3 = e3), ""); variable
/external/clang/test/Sema/
H A Dstring-init.c35 int e3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
/external/clang/test/SemaCXX/
H A Dmember-name-lookup.cpp50 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
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
H A Dstring-init.cpp30 int e3[] = u"a"; // expected-error{{array initializer must be an initializer list}} local
H A Dabstract.cpp47 C (**e3)[2]; // expected-error {{array of abstract class type 'C'}} variable
H A Dwarn-sign-conversion.cpp77 int e3 = 1 ? E : B; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} local
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSampleElements.java33 // TODO: rename e3, e4 => missing1, missing2
37 public final E e3; field in class:SampleElements
40 public SampleElements(E e0, E e1, E e2, E e3, E e4) { argument
44 this.e3 = e3;
54 return Arrays.asList(e0, e1, e2, e3, e4);
98 Helpers.mapEntry(keys.e3, values.e3),
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetTest.java102 @Override protected Set<String> of(String e1, String e2, String e3) { argument
103 return ImmutableSet.of(e1, e2, e3);
107 String e1, String e2, String e3, String e4) {
108 return ImmutableSet.of(e1, e2, e3, e4);
112 String e1, String e2, String e3, String e4, String e5) {
113 return ImmutableSet.of(e1, e2, e3, e4, e5);
116 @Override protected Set<String> of(String e1, String e2, String e3, argument
118 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
106 of( String e1, String e2, String e3, String e4) argument
111 of( String e1, String e2, String e3, String e4, String e5) argument
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java38 public static ASTList make(ASTree e1, ASTree e2, ASTree e3) { argument
39 return new ASTList(e1, new ASTList(e2, new ASTList(e3)));
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp49 constexpr enum E3 { V3 } e3 = V3; variable in typeref:enum:E3
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
H A Dp1.cpp54 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
/external/clang/test/Parser/
H A DMicrosoftExtensions.c48 enum E3 e3 = e; /* expected-warning {{'e' is deprecated}} */ local
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest_pred_impl.h181 const char* e3,
191 << e3 << ") evaluates to false, where"
194 << "\n" << e3 << " evaluates to " << v3;
237 const char* e3,
249 << e3 << ", "
253 << "\n" << e3 << " evaluates to " << v3
300 const char* e3,
314 << e3 << ", "
319 << "\n" << e3 << " evaluates to " << v3
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
/external/gtest/include/gtest/
H A Dgtest_pred_impl.h181 const char* e3,
191 << e3 << ") evaluates to false, where"
194 << "\n" << e3 << " evaluates to " << v3;
237 const char* e3,
249 << e3 << ", "
253 << "\n" << e3 << " evaluates to " << v3
300 const char* e3,
314 << e3 << ", "
319 << "\n" << e3 << " evaluates to " << v3
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument

Completed in 593 milliseconds

1234