/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableList.java | 67 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of() argument 69 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4)); in of() 72 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument 74 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5)); in of() 77 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of() argument 79 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6)); in of() 83 E e1, E e2, E e3, E e4, E e5, E e6, E e7) { in of() argument 85 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6, e7)); in of() 89 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) { in of() argument 91 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6, e7, e8)); in of() [all …]
|
D | ImmutableSet.java | 64 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() argument 65 return create(e1, e2, e3, e4); in of() 69 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument 70 return create(e1, e2, e3, e4, e5); in of() 74 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) { in of() argument 77 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
|
D | ImmutableMultiset.java | 105 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4) { in of() argument 106 return copyOfInternal(e1, e2, e3, e4); in of() 116 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument 117 return copyOfInternal(e1, e2, e3, e4, e5); in of() 128 E e1, E e2, E e3, E e4, E e5, E e6, E... others) { in of() argument 133 .add(e4) in of()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SampleElements.java | 38 public final E e4; field in SampleElements 40 public SampleElements(E e0, E e1, E e2, E e3, E e4) { in SampleElements() argument 45 this.e4 = e4; in SampleElements() 54 return Arrays.asList(e0, e1, e2, e3, e4); in asList() 99 Helpers.mapEntry(keys.e4, values.e4)); in mapEntries()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | MultimapPutIterableTester.java | 49 return Lists.newArrayList(sampleValues().e3, sampleValues().e4).iterator(); in testPutAllNonEmptyIterableOnPresentKey() 52 assertGet(sampleKeys().e0, sampleValues().e0, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyIterableOnPresentKey() 59 sampleKeys().e0, Lists.newArrayList(sampleValues().e3, sampleValues().e4))); in testPutAllNonEmptyCollectionOnPresentKey() 60 assertGet(sampleKeys().e0, sampleValues().e0, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyCollectionOnPresentKey() 68 return Lists.newArrayList(sampleValues().e3, sampleValues().e4).iterator(); in testPutAllNonEmptyIterableOnAbsentKey() 71 assertGet(sampleKeys().e3, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyIterableOnAbsentKey() 77 sampleKeys().e3, Lists.newArrayList(sampleValues().e3, sampleValues().e4))); in testPutAllNonEmptyCollectionOnAbsentKey() 78 assertGet(sampleKeys().e3, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyCollectionOnAbsentKey() 147 assertTrue(multimap().putAll(null, Lists.newArrayList(sampleValues().e3, sampleValues().e4))); in testPutAllOnPresentNullKey() 148 assertGet(null, sampleValues().e3, sampleValues().e4); in testPutAllOnPresentNullKey() [all …]
|
D | MultisetAddTester.java | 113 assertTrue(getMultiset().addAll(Arrays.asList(samples.e3, samples.e4, samples.e3))); in testAddAll_nonEmptyList() 114 expectAdded(samples.e3, samples.e4, samples.e3); in testAddAll_nonEmptyList() 120 getSubjectGenerator().create(samples.e3, samples.e4, samples.e3))); in testAddAll_nonEmptyMultiset() 121 expectAdded(samples.e3, samples.e4, samples.e3); in testAddAll_nonEmptyMultiset()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableList.java | 115 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of() argument 116 return construct(e1, e2, e3, e4); in of() 124 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument 125 return construct(e1, e2, e3, e4, e5); in of() 133 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of() argument 134 return construct(e1, e2, e3, e4, e5, e6); in of() 143 E e1, E e2, E e3, E e4, E e5, E e6, E e7) { in of() argument 144 return construct(e1, e2, e3, e4, e5, e6, e7); in of() 153 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) { in of() argument 154 return construct(e1, e2, e3, e4, e5, e6, e7, e8); in of() [all …]
|
D | ImmutableSortedMultisetFauxverideShim.java | 100 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
|
D | ImmutableSortedSetFauxverideShim.java | 99 E e1, E e2, E e3, E e4) { in of() argument 114 E e1, E e2, E e3, E e4, E e5) { in of() argument 129 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { in of() argument
|
D | ImmutableSet.java | 126 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() argument 127 return construct(4, e1, e2, e3, e4); in of() 137 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument 138 return construct(5, e1, e2, e3, e4, e5); in of() 149 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, in of() argument 156 elements[3] = e4; in of()
|
D | ImmutableSortedMultiset.java | 140 E e1, E e2, E e3, E e4) { in of() argument 141 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); in of() 152 E e1, E e2, E e3, E e4, E e5) { in of() argument 153 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5)); in of() 164 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { in of() argument 167 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
|
D | ImmutableMultiset.java | 106 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4) { in of() argument 107 return copyOfInternal(e1, e2, e3, e4); in of() 117 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument 118 return copyOfInternal(e1, e2, e3, e4, e5); in of() 129 E e1, E e2, E e3, E e4, E e5, E e6, E... others) { in of() argument 134 .add(e4) in of()
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSetTest.java | 57 String e1, String e2, String e3, String e4) { in of() argument 58 return ImmutableSet.of(e1, e2, e3, e4); in of() 62 String e1, String e2, String e3, String e4, String e5) { in of() argument 63 return ImmutableSet.of(e1, e2, e3, e4, e5); in of() 67 String e4, String e5, String e6, String... rest) { in of() argument 68 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); in of()
|
/external/clang/test/Sema/ |
D | no-documentation-warn-tagdecl-specifier.c | 65 enum e4* g4(void); 66 enum e4 { one }; enum 85 enum e4 *g8(enum e8 *p);
|
/external/clang/test/CodeGenCXX/ |
D | pr12251.cpp | 37 enum e4 { e4_a = -16}; enum 38 e4 g4(e4 *x) { in g4()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | SetAddAllTester.java | 48 = MinimalCollection.of(samples.e3, samples.e4, samples.e3, samples.e4); in testAddAll_withDuplicates() 51 expectAdded(samples.e3, samples.e4); in testAddAll_withDuplicates()
|
/external/tcpdump/tests/ |
D | of10_s4810-vvvv.out | 26 port_no 1, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/0' 33 port_no 2, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/1' 66 port_no 1, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/0' 73 port_no 2, hw_addr 00:01:e8:8a:e0:e4, name 'Te 0/1' 198 match dl_dst 00:01:e8:8a:e0:e4 202 action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 206 match dl_dst 00:01:e8:8a:e0:e4 210 action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 214 match dl_dst 00:01:e8:8a:e0:e4 218 action type SET_DL_SRC, len 16, dl_addr 00:01:e8:8a:e0:e4 [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableSetTest.java | 107 String e1, String e2, String e3, String e4) { in of() argument 108 return ImmutableSet.of(e1, e2, e3, e4); in of() 112 String e1, String e2, String e3, String e4, String e5) { in of() argument 113 return ImmutableSet.of(e1, e2, e3, e4, e5); in of() 117 String e4, String e5, String e6, String... rest) { in of() argument 118 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); in of()
|
/external/llvm/test/TableGen/ |
D | SetTheory.td | 140 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/ |
D | p1.cpp | 54 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/mesa3d/src/gtest/include/gtest/ |
D | gtest_pred_impl.h | 238 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/gtest/include/gtest/ |
D | gtest_pred_impl.h | 238 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/ |
D | gtest_pred_impl.h | 244 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/google-breakpad/src/testing/gtest/include/gtest/ |
D | gtest_pred_impl.h | 238 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/llvm/utils/unittest/googletest/include/gtest/ |
D | gtest_pred_impl.h | 238 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()
|