/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()
|
/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-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/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()
|
/external/wayland/tests/ |
D | list-test.c | 76 struct element e1, e2, e3, e4, *e; in TEST() local 83 e4.i = 12; in TEST() 89 wl_list_insert(list.prev, &e4.link); in TEST() 152 struct element e1, e2, e3, e4, e5, e6; in TEST() local 167 e4.i = 76543; in TEST() 172 wl_list_insert(&other, &e4.link); in TEST()
|
/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/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/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/clang/test/CodeGenCXX/ |
D | pr12251.cpp | 37 enum e4 { e4_a = -16}; enum 38 e4 g4(e4 *x) { in g4()
|
/external/epid-sdk/epid/member/tiny/math/src/ |
D | fq12.c | 181 Fq2Elem* e4 = &(result->z0).y2; in Fq12SqCyc() local 206 Fq2Add(e4, a4, a4); in Fq12SqCyc() 207 Fq2Sub(e4, temp1, e4); in Fq12SqCyc() 208 Fq2Add(e4, temp1, e4); in Fq12SqCyc() 209 Fq2Add(e4, temp1, e4); in Fq12SqCyc()
|
/external/swiftshader/third_party/llvm-7.0/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/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/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
D | gtest_pred_impl.h | 237 const char* e4, in AssertPred4Helper() argument 249 << e4 << ") evaluates to false, where" in AssertPred4Helper() 253 << "\n" << e4 << " evaluates to " << v4; in AssertPred4Helper() 300 const char* e4, in AssertPred5Helper() argument 314 << e4 << ", " in AssertPred5Helper() 319 << "\n" << e4 << " evaluates to " << v4 in AssertPred5Helper()
|
/external/curl/tests/certs/ |
D | Server-localhost-sv.crt | 36 26:2c:4f:c0:60:84:a9:21:39:0f:44:28:e4:e3:11: 37 79:e4:a3:44:e2:20:e1:9d:65:54:a2:27:56:67:94: 64 26:e4:45:43:1d:25:78:f1:de:81:f1:d9:39:70:70:46:77:48: 66 fb:4b:54:2d:01:2a:f3:e4:6f:e7:b3:4a:05:4c:f3:0b:a6:d1: 67 10:5a:27:e4:15:6c:80:55:2c:63:50:f1:36:0d:eb:ff:e1:eb:
|
/external/swiftshader/third_party/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()
|
/external/libaom/libaom/third_party/googletest/src/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()
|
/external/googletest/googletest/include/gtest/ |
D | gtest_pred_impl.h | 240 const char* e4, in AssertPred4Helper() argument 249 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred4Helper() 255 << e4 << " evaluates to " << ::testing::PrintToString(v4); in AssertPred4Helper() 302 const char* e4, in AssertPred5Helper() argument 313 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred5Helper() 319 << e4 << " evaluates to " << ::testing::PrintToString(v4) << "\n" in AssertPred5Helper()
|
/external/swiftshader/third_party/llvm-7.0/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()
|