Home
last modified time | relevance | path

Searched refs:e4 (Results 1 – 25 of 82) sorted by relevance

1234

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableList.java74 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of() argument
76 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4)); in of()
79 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
81 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5)); in of()
84 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of() argument
86 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6)); in of()
90 E e1, E e2, E e3, E e4, E e5, E e6, E e7) { in of() argument
92 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6, e7)); in of()
96 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) { in of() argument
98 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6, e7, e8)); in of()
[all …]
DImmutableSet.java72 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() argument
73 return create(e1, e2, e3, e4); in of()
77 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
78 return create(e1, e2, e3, e4, e5); in of()
82 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, in of() argument
86 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
DImmutableSortedSet.java95 E e1, E e2, E e3, E e4) { in of() argument
96 return ofInternal(Ordering.natural(), e1, e2, e3, e4); in of()
101 E e1, E e2, E e3, E e4, E e5) { in of() argument
102 return ofInternal(Ordering.natural(), e1, e2, e3, e4, e5); in of()
107 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { in of() argument
110 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
/external/guava/guava/src/com/google/common/collect/
DImmutableList.java106 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of() argument
107 return construct(e1, e2, e3, e4); in of()
115 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
116 return construct(e1, e2, e3, e4, e5); in of()
124 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of() argument
125 return construct(e1, e2, e3, e4, e5, e6); in of()
134 E e1, E e2, E e3, E e4, E e5, E e6, E e7) { in of() argument
135 return construct(e1, e2, e3, e4, e5, e6, e7); in of()
144 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) { in of() argument
145 return construct(e1, e2, e3, e4, e5, e6, e7, e8); in of()
[all …]
DImmutableSortedMultisetFauxverideShim.java100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) { in of() argument
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
134 E e4, in of() argument
DImmutableSortedSetFauxverideShim.java102 E e1, E e2, E e3, E e4) { in of() argument
117 E e1, E e2, E e3, E e4, E e5) { in of() argument
132 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { in of() argument
DImmutableSet.java120 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() argument
121 return construct(e1, e2, e3, e4); in of()
131 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
132 return construct(e1, e2, e3, e4, e5); in of()
143 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, in of() argument
150 elements[3] = e4; in of()
DImmutableSortedSet.java163 E e1, E e2, E e3, E e4) { in of() argument
164 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); in of()
176 E e1, E e2, E e3, E e4, E e5) { in of() argument
177 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5)); in of()
190 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { in of() argument
193 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
DImmutableSortedMultiset.java130 E e1, E e2, E e3, E e4) { in of() argument
131 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); in of()
142 E e1, E e2, E e3, E e4, E e5) { in of() argument
143 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5)); in of()
157 E e4, in of() argument
163 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
DImmutableMultiset.java102 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4) { in of() argument
103 return copyOfInternal(e1, e2, e3, e4); in of()
113 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
114 return copyOfInternal(e1, e2, e3, e4, e5); in of()
125 E e1, E e2, E e3, E e4, E e5, E e6, E... others) { in of() argument
128 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSampleElements.java34 public final E e4; field in SampleElements
36 public SampleElements(E e0, E e1, E e2, E e3, E e4) { in SampleElements() argument
41 this.e4 = e4; in SampleElements()
72 Helpers.mapEntry(keys.e4, values.e4)); in mapEntries()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSetTest.java59 String e1, String e2, String e3, String e4) { in of() argument
60 return ImmutableSet.of(e1, e2, e3, e4); in of()
64 String e1, String e2, String e3, String e4, String e5) { in of() argument
65 return ImmutableSet.of(e1, e2, e3, e4, e5); in of()
69 String e4, String e5, String e6, String... rest) { in of() argument
70 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); in of()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DSetAddAllTester.java48 = MinimalCollection.of(samples.e3, samples.e4, samples.e3, samples.e4); in testAddAll_withDuplicates()
51 expectAdded(samples.e3, samples.e4); in testAddAll_withDuplicates()
DCollectionAddAllTester.java66 expectAdded(samples.e3, samples.e4); in testAddAll_supportedNonePresent()
77 expectMissing(samples.e3, samples.e4); in testAddAll_unsupportedNonePresent()
/external/clang/test/CodeGenCXX/
Dpr12251.cpp37 enum e4 { e4_a = -16}; enum
38 e4 g4(e4 *x) { in g4()
/external/llvm/test/TableGen/
DSetTheory.td140 def e4;
146 def E : Set<(add e0, e1, e2, e3, e4, e5, e6, e7, e8, e9)>;
156 // CHECK: S8e = [ e0 e2 e4 e6 e8 e1 e3 e5 e7 e9 ]
165 // CHECK: S9a = [ e3 e4 e5 e6 e7 ]
166 // CHECK: S9b = [ e7 e6 e5 e4 e3 ]
168 // CHECK: S9d = [ a b c d e0 e3 e6 e9 e4 e5 e7 ]
175 // CHECK: T0a = [ e3 e7 e4 e6 e5 ]
176 // CHECK: T0b = [ e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ]
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
Dp1.cpp54 template<> enum A<long long>::E : long long { e3, e4 }; // expected-error {{explicit specialization… enumerator
56 template<> enum class B<long long>::E { e3, e4 }; enumerator
57 B<long long>::E b4 = B<long long>::E::e4;
69 template<> enum class C<long long>::E : long long { e3, e4 }; enumerator
/external/llvm/utils/unittest/googletest/include/gtest/
Dgtest_pred_impl.h238 const char* e4, in AssertPred4Helper() argument
250 << e4 << ") evaluates to false, where" in AssertPred4Helper()
254 << "\n" << e4 << " evaluates to " << v4; in AssertPred4Helper()
301 const char* e4, in AssertPred5Helper() argument
315 << e4 << ", " in AssertPred5Helper()
320 << "\n" << e4 << " evaluates to " << v4 in AssertPred5Helper()
/external/protobuf/gtest/include/gtest/
Dgtest_pred_impl.h244 const char* e4, in AssertPred4Helper() argument
257 << e4 << ") evaluates to false, where" in AssertPred4Helper()
261 << "\n" << e4 << " evaluates to " << v4; in AssertPred4Helper()
309 const char* e4, in AssertPred5Helper() argument
324 << e4 << ", " in AssertPred5Helper()
329 << "\n" << e4 << " evaluates to " << v4 in AssertPred5Helper()
/external/gtest/include/gtest/
Dgtest_pred_impl.h238 const char* e4, in AssertPred4Helper() argument
250 << e4 << ") evaluates to false, where" in AssertPred4Helper()
254 << "\n" << e4 << " evaluates to " << v4; in AssertPred4Helper()
301 const char* e4, in AssertPred5Helper() argument
315 << e4 << ", " in AssertPred5Helper()
320 << "\n" << e4 << " evaluates to " << v4 in AssertPred5Helper()
/external/chromium/sdch/open-vcdiff/src/gtest/
Dgtest_pred_impl.h244 const char* e4, in AssertPred4Helper() argument
257 << e4 << ") evaluates to false, where" in AssertPred4Helper()
261 << "\n" << e4 << " evaluates to " << v4; in AssertPred4Helper()
309 const char* e4, in AssertPred5Helper() argument
324 << e4 << ", " in AssertPred5Helper()
329 << "\n" << e4 << " evaluates to " << v4 in AssertPred5Helper()
/external/chromium/testing/gtest/include/gtest/
Dgtest_pred_impl.h238 const char* e4, in AssertPred4Helper() argument
250 << e4 << ") evaluates to false, where" in AssertPred4Helper()
254 << "\n" << e4 << " evaluates to " << v4; in AssertPred4Helper()
301 const char* e4, in AssertPred5Helper() argument
315 << e4 << ", " in AssertPred5Helper()
320 << "\n" << e4 << " evaluates to " << v4 in AssertPred5Helper()
/external/clang/test/CodeGen/
D2007-04-11-PR1321.c8 unsigned int e4 : 17; member
/external/openssl/crypto/aes/
Daes_wrap.c220 static const unsigned char e4[] = { in main() local
250 ret = AES_wrap_unwrap_test(kek, 192, NULL, e4, key, 24); in main()
/external/chromium/testing/gmock/include/gmock/
Dgmock-generated-matchers.h397 const T4& e4) : e1_(e1), e2_(e2), e3_(e3), e4_(e4) {} in ElementsAreMatcher4() argument
427 ElementsAreMatcher5(const T1& e1, const T2& e2, const T3& e3, const T4& e4, in ElementsAreMatcher5() argument
428 const T5& e5) : e1_(e1), e2_(e2), e3_(e3), e4_(e4), e5_(e5) {} in ElementsAreMatcher5()
461 ElementsAreMatcher6(const T1& e1, const T2& e2, const T3& e3, const T4& e4, in ElementsAreMatcher6() argument
462 const T5& e5, const T6& e6) : e1_(e1), e2_(e2), e3_(e3), e4_(e4), in ElementsAreMatcher6()
498 ElementsAreMatcher7(const T1& e1, const T2& e2, const T3& e3, const T4& e4, in ElementsAreMatcher7() argument
500 e4_(e4), e5_(e5), e6_(e6), e7_(e7) {} in ElementsAreMatcher7()
537 ElementsAreMatcher8(const T1& e1, const T2& e2, const T3& e3, const T4& e4, in ElementsAreMatcher8() argument
539 e2_(e2), e3_(e3), e4_(e4), e5_(e5), e6_(e6), e7_(e7), e8_(e8) {} in ElementsAreMatcher8()
578 ElementsAreMatcher9(const T1& e1, const T2& e2, const T3& e3, const T4& e4, in ElementsAreMatcher9() argument
[all …]

1234