/external/icu/icu4c/source/test/intltest/ |
D | listformattertest.cpp | 23 three("Charlie", -1, US_INV), four("Delta", -1, US_INV) { in ListFormatterTest() 38 UnicodeString three, UnicodeString four, UnicodeString results[4]) { in CheckFourCases() argument 51 UnicodeString input3[] = {one, two, three}; in CheckFourCases() 54 UnicodeString input4[] = {one, two, three, four}; in CheckFourCases() 59 UnicodeString three, UnicodeString four, UnicodeString results[4]) { in RecordFourCases() argument 70 UnicodeString input3[] = {one, two, three}; in RecordFourCases() 72 UnicodeString input4[] = {one, two, three, four}; in RecordFourCases() 85 one + ", " + two + ", " + three, in TestRoot() 86 one + ", " + two + ", " + three + ", " + four in TestRoot() 89 CheckFourCases("", one, two, three, four, results); in TestRoot() [all …]
|
/external/toybox/tests/ |
D | rmdir.test | 19 mkdir one two three 20 testing "rmdir one missing two file three" \ 21 "rmdir one missing two walrus three 2> /dev/null || [ ! -d three ] && echo yes" \ 37 mkdir -p temp/one/two/three 39 "rmdir -p temp/one/two/three 2>/dev/null || [ -d temp ] && [ ! -e temp/one ] && echo yes" \ 44 mkdir -p one/two/three 45 testing "rmdir -p one/two/three" \ 46 "rmdir -p one/two/three && [ ! -e one ] && echo yes" "yes\n" "" "" 48 mkdir -p one/two/three 49 testing "rmdir -p one/two/three/" \ [all …]
|
D | xargs.test | 9 "one two three four\n" "" "one two\tthree \nfour\n\n" 12 "" "one \ntwo\n three" 13 testing "xargs -n 2" "xargs -n 2" "one two\nthree\n" "" "one \ntwo\n three" 14 testing "xargs -n exact match" "xargs -n 3" "one two three\n" "" "one two three" 16 "one two three four five" 18 "one\ntwo\nok\n" "" "one two three" 19 testing "xargs -s 13" "xargs -s 13 echo" "one two\nthree\n" "" "one \ntwo\n three" 20 testing "xargs -s 12" "xargs -s 12 echo" "one\ntwo\nthree\n" "" "one \ntwo\n three" 22 touch one two three 24 "one two three" [all …]
|
D | cp.test | 26 "cp -r two three && cmp random three/random && echo yes" \ 31 touch two/three 33 "cp -r three two 2>/dev/null || echo yes" "yes\n" "" "" 34 rm -rf two three walrus 79 mkdir -p one/two/three/four 80 touch one/two/three/five 93 # cp -r one/two/three missing 94 # cp -r one/two/three two 95 # mkdir one; touch one/two; ln -s two one/three
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSortedMapTest.java | 86 return ImmutableSortedMap.of("one", 1, "two", 2, "three", 3); in makePopulatedMap() 208 .put("three", 3) in testBuilder() 213 "five", 5, "four", 4, "one", 1, "three", 3, "two", 2); in testBuilder() 274 toPut.put("three", 3); in testBuilderPutAll() 285 "five", 5, "four", 4, "one", 1, "three", 3, "two", 2); in testBuilderPutAll() 295 .put("three", 3) in testBuilderReuse() 300 assertMapEquals(mapTwo, "four", 4, "one", 1, "three", 3, "two", 2); in testBuilderReuse() 360 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3), in testOf() 361 "one", 1, "three", 3, "two", 2); in testOf() 363 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3, "four", 4), in testOf() [all …]
|
D | ImmutableBiMapTest.java | 86 return ImmutableBiMap.of("one", 1, "two", 2, "three", 3); in makePopulatedMap() 105 return ImmutableBiMap.of(1, "one", 2, "two", 3, "three").inverse(); in makePopulatedMap() 139 .put("three", 3) in testBuilder() 144 "one", 1, "two", 2, "three", 3, "four", 4, "five", 5); in testBuilder() 146 1, "one", 2, "two", 3, "three", 4, "four", 5, "five"); in testBuilder() 160 toPut.put("three", 3); in testBuilderPutAll() 170 "one", 1, "two", 2, "three", 3, "four", 4, "five", 5); in testBuilderPutAll() 172 1, "one", 2, "two", 3, "three", 4, "four", 5, "five"); in testBuilderPutAll() 182 .put("three", 3) in testBuilderReuse() 188 assertMapEquals(mapTwo, "one", 1, "two", 2, "three", 3, "four", 4); in testBuilderReuse() [all …]
|
D | MapsTest.java | 560 Set<String> strings = ImmutableSet.of("one", "two", "three"); in testAsMap() 562 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5), map); in testAsMap() 563 assertEquals(Integer.valueOf(5), map.get("three")); in testAsMap() 568 mapEntry("three", 5)).inOrder(); in testAsMap() 573 Collections.addAll(strings, "one", "two", "three"); in testAsMapReadsThrough() 575 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5), map); in testAsMapReadsThrough() 578 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5, "four", 4), map); in testAsMapReadsThrough() 584 Collections.addAll(strings, "one", "two", "three"); in testAsMapWritesThrough() 586 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5), map); in testAsMapWritesThrough() 588 assertThat(strings).has().exactly("one", "three").inOrder(); in testAsMapWritesThrough() [all …]
|
D | ImmutableMapTest.java | 85 return ImmutableMap.of("one", 1, "two", 2, "three", 3); in makePopulatedMap() 155 .put("three", 3) in testBuilder() 160 "one", 1, "two", 2, "three", 3, "four", 4, "five", 5); in testBuilder() 218 toPut.put("three", 3); in testBuilderPutAll() 228 "one", 1, "two", 2, "three", 3, "four", 4, "five", 5); in testBuilderPutAll() 238 .put("three", 3) in testBuilderReuse() 243 assertMapEquals(mapTwo, "one", 1, "two", 2, "three", 3, "four", 4); in testBuilderReuse() 353 ImmutableMap.of("one", 1, "two", 2, "three", 3), in testOf() 354 "one", 1, "two", 2, "three", 3); in testOf() 356 ImmutableMap.of("one", 1, "two", 2, "three", 3, "four", 4), in testOf() [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableSortedMapTest.java | 146 return ImmutableSortedMap.of("one", 1, "two", 2, "three", 3); in makePopulatedMap() 178 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3)); in makePopulatedMap() 285 .put("three", 3) in testBuilder() 290 "five", 5, "four", 4, "one", 1, "three", 3, "two", 2); in testBuilder() 351 toPut.put("three", 3); in testBuilderPutAll() 362 "five", 5, "four", 4, "one", 1, "three", 3, "two", 2); in testBuilderPutAll() 372 .put("three", 3) in testBuilderReuse() 377 assertMapEquals(mapTwo, "four", 4, "one", 1, "three", 3, "two", 2); in testBuilderReuse() 437 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3), in testOf() 438 "one", 1, "three", 3, "two", 2); in testOf() [all …]
|
D | ImmutableBiMapTest.java | 127 return ImmutableBiMap.of("one", 1, "two", 2, "three", 3); in makePopulatedMap() 146 return ImmutableBiMap.of(1, "one", 2, "two", 3, "three").inverse(); in makePopulatedMap() 180 .put("three", 3) in testBuilder() 185 "one", 1, "two", 2, "three", 3, "four", 4, "five", 5); in testBuilder() 187 1, "one", 2, "two", 3, "three", 4, "four", 5, "five"); in testBuilder() 201 toPut.put("three", 3); in testBuilderPutAll() 211 "one", 1, "two", 2, "three", 3, "four", 4, "five", 5); in testBuilderPutAll() 213 1, "one", 2, "two", 3, "three", 4, "four", 5, "five"); in testBuilderPutAll() 223 .put("three", 3) in testBuilderReuse() 229 assertMapEquals(mapTwo, "one", 1, "two", 2, "three", 3, "four", 4); in testBuilderReuse() [all …]
|
D | MapsTest.java | 626 Set<String> strings = ImmutableSet.of("one", "two", "three"); in testAsMap() 628 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5), map); in testAsMap() 629 assertEquals(Integer.valueOf(5), map.get("three")); in testAsMap() 634 mapEntry("three", 5)).inOrder(); in testAsMap() 639 Collections.addAll(strings, "one", "two", "three"); in testAsMapReadsThrough() 641 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5), map); in testAsMapReadsThrough() 644 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5, "four", 4), map); in testAsMapReadsThrough() 650 Collections.addAll(strings, "one", "two", "three"); in testAsMapWritesThrough() 652 assertEquals(ImmutableMap.of("one", 3, "two", 3, "three", 5), map); in testAsMapWritesThrough() 654 assertThat(strings).has().exactly("one", "three").inOrder(); in testAsMapWritesThrough() [all …]
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/about_tracing/ |
D | record_selection_dialog_test.html | 43 ['cc,disabled-by-default-one,cc.debug', 'two,three', 'three']; 49 ['"cc"', '"cc.debug"', '"disabled-by-default-one"', '"three"', '"two"']; 63 dlg.categories = ['disabled-by-default-one', 'two', 'three']; 70 assert.equal(checkboxes[0].id, 'three'); 71 assert.equal(checkboxes[0].value, 'three'); 84 assert.equal(labels[0].textContent, 'three'); 91 tr.b.Settings.set('three', false, 'categories'); 101 assert.equal(checkboxes[0].id, 'three'); 102 assert.equal(checkboxes[0].value, 'three'); 111 assert.equal(dlg.categoryFilter(), '-three'); [all …]
|
/external/libcxxabi/test/ |
D | test_vector1.pass.cpp | 67 void *one, *two, *three; in test_empty() local 72 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc3 ); in test_empty() 76 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, NULL, my_dealloc3 ); in test_empty() 81 …three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc3… in test_empty() 85 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, my_destruct, my_dealloc3 ); in test_empty() 90 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc3 ); in test_empty() 94 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, NULL, my_dealloc3 ); in test_empty() 99 …three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc3… in test_empty() 103 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, my_destruct, my_dealloc3 ); in test_empty() 111 void *one, *two, *three; in test_counted() local [all …]
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalLoadingCacheTest.java | 122 Object three = new Object(); in testStats() local 123 cache.getUnchecked(three); in testStats() 153 Object three = new Object(); in testStatsNoops() local 154 assertTrue(map.replace(one, two, three)); in testStatsNoops() 155 assertTrue(map.remove(one, three)); in testStatsNoops() 158 assertNull(map.putIfAbsent(two, three)); in testStatsNoops() 159 assertSame(three, map.remove(two)); in testStatsNoops() 160 assertNull(map.put(three, one)); in testStatsNoops() 163 assertThat(map).hasKey(three).withValue(one); in testStatsNoops() 169 // Maps.immutableEntry(three, one), Maps.immutableEntry(one, two)); in testStatsNoops() [all …]
|
/external/skia/src/utils/ |
D | SkTextureCompressor_Utils.h | 13 // In some compression formats used for grayscale alpha, i.e. coverage masks, three 15 // quantize the full eight bits of grayscale to three bits. The simplest way to do 16 // this is to take the top three bits of the grayscale value. However, this does not 18 // our compression schemes, we let these three-bit indices represent the full range 19 // of grayscale values, and so when we go from three bits to eight bits, we replicate 20 // the three bits into the lower bits of the eight bit value. Below are two different 23 // Divides each byte in the 32-bit argument by three. 39 // top three bits, the function computes the best three-bit value such that its 46 // 3. Divide by 18 (divide by two, then by three twice) 54 // Now divide by three twice in ConvertToThreeBitIndex() [all …]
|
/external/v8/test/mjsunit/ |
D | smi-ops-inlined.js | 443 var three = 3; 463 assertEquals(pos_non_smi / 8, (pos_non_smi) >> three); 464 assertEquals(pos_non_smi / 8, (pos_non_smi) >>> three); 465 assertEquals(-0x46536000, (pos_non_smi) << three); 473 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >> three); 474 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >>> three); 475 assertEquals(-0x46536000, (pos_non_smi + 0.5) << three); 481 assertEquals(neg_non_smi / 8, (neg_non_smi) >> three); 482 assertEquals(neg_non_smi / 8 + 0x100000000 / 8, (neg_non_smi) >>> three); 483 assertEquals(0x46536000, (neg_non_smi) << three); [all …]
|
D | smi-ops.js | 450 var three = 3; 470 assertEquals(pos_non_smi / 8, (pos_non_smi) >> three); 471 assertEquals(pos_non_smi / 8, (pos_non_smi) >>> three); 472 assertEquals(-0x46536000, (pos_non_smi) << three); 480 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >> three); 481 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >>> three); 482 assertEquals(-0x46536000, (pos_non_smi + 0.5) << three); 488 assertEquals(neg_non_smi / 8, (neg_non_smi) >> three); 489 assertEquals(neg_non_smi / 8 + 0x100000000 / 8, (neg_non_smi) >>> three); 490 assertEquals(0x46536000, (neg_non_smi) << three); [all …]
|
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/ |
D | erase_key.pass.cpp | 51 P(3, "three"), in main() 61 assert(c.at(3) == "three"); in main() 67 assert(c.at(3) == "three"); in main() 73 assert(c.at(3) == "three"); in main() 79 assert(c.at(3) == "three"); in main() 84 assert(c.at(3) == "three"); in main() 88 assert(c.at(3) == "three"); in main() 92 assert(c.at(3) == "three"); in main() 109 P(3, "three"), in main() 119 assert(c.at(3) == "three"); in main() [all …]
|
/external/mesa3d/docs/ |
D | MESA_texture_array.spec | 71 of the N LOD in all three dimensions. For the TEXTURE_2D_ARRAY target, 172 is used to specify a three-dimensional texture image. target must be one 173 one of TEXTURE_3D for a three-dimensional texture or 176 three-dimensional proxy texture, or PROXY_TEXTURE_2D_ARRAY_EXT for a 334 "For one-, two-, or three-dimensional textures and one- or 343 "In addition to image arrays for one-, two-, and three-dimensional 346 are maintained for one-, two-, and three-dimensional textures and one- 354 three-dimensional proxy state values of the specified level-of-detail 377 named one-, two-, and three-dimensional, cube map, and one- and 394 three-dimensional, cube map, one- or two-dimensional array texture [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/ |
D | SchedulerTest.java | 24 scheduler.postDelayed(new AddToTranscript("three"), 1000); in testTick_ReturnsTrueIffSomeJobWasRun() 33 transcript.assertEventsSoFar("three"); in testTick_ReturnsTrueIffSomeJobWasRun() 40 scheduler.postDelayed(new AddToTranscript("three"), 3000); in testShadowPostDelayed() 52 transcript.assertEventsSoFar("three"); in testShadowPostDelayed() 59 scheduler.postAtFrontOfQueue(new AddToTranscript("three")); in testShadowPostAtFrontOfQueue() 62 transcript.assertEventsSoFar("three"); in testShadowPostAtFrontOfQueue() 74 scheduler.postAtFrontOfQueue(new AddToTranscript("three")); in testShadowPostAtFrontOfQueue_whenUnpaused() 75 transcript.assertEventsSoFar("three"); in testShadowPostAtFrontOfQueue_whenUnpaused() 88 scheduler.postDelayed(new AddToTranscript("three"), 1000); in testShadowPostDelayed_WhenMoreItemsAreAdded() 104 transcript.assertEventsSoFar("three"); in testShadowPostDelayed_WhenMoreItemsAreAdded()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
D | allocate_shared_no_variadics.pass.cpp | 58 struct Three struct 62 Three(int v, int, int) : value(v) {++count;} in Three() argument 63 Three(Three const & o) : value(o.value) {++count;} in Three() function 64 ~Three() {--count;} in ~Three() argument 67 int Three::count = 0; 94 std::shared_ptr<Three> p = std::allocate_shared<Three>(Alloc(), i, bad, bad); in test() 95 assert(Three::count == 1); in test() 98 assert(Three::count == 0); in test()
|
/external/v8/test/mjsunit/regress/ |
D | regress-deep-proto.js | 34 var three = {bar: 0}; variable 35 three.__proto__ = {}; 36 three.__proto__.__proto__ = {}; 37 three.__proto__.__proto__.__proto__ = {}; 38 three.__proto__.__proto__.__proto__.__proto__ = {}; 39 three.__proto__.__proto__.__proto__.__proto__.__proto__ = {}; 44 poly(three);
|
/external/clang/test/CodeGenObjCXX/ |
D | property-object-reference-2.mm | 34 // CHECK: [[THREE:%.*]] = load %struct.TCPPObject*, %struct.TCPPObject** [[ADDR1:%.*]], align 8 36 …truct.TCPPObject* [[TWO]], %struct.TCPPObject* dereferenceable({{[0-9]+}}) [[THREE]], i32 [[CALL]]) 42 // CHECK: [[THREE:%.*]] = bitcast %struct.TCPPObject* [[AGGRESULT:%.*]] to i8* 43 // CHECK: call void @objc_copyCppObjectAtomic(i8* [[THREE]], i8* [[TWO]], i8* bitcast (void (%struc… 48 // CHECK: [[THREE:%.*]] = load %struct.TCPPObject*, %struct.TCPPObject** [[ADDR1:%.*]], align 8 49 …jectaSERKS_(%struct.TCPPObject* [[TWO]], %struct.TCPPObject* dereferenceable({{[0-9]+}}) [[THREE]]) 55 // CHECK: [[THREE:%.*]] = bitcast %struct.TCPPObject* [[MYPROPERTY:%.*]] to i8* 56 // CHECK: call void @objc_copyCppObjectAtomic(i8* [[TWO]], i8* [[THREE]], i8* bitcast (void (%struc…
|
/external/clang/test/CodeGenCXX/ |
D | cp-blocks-linetables.cpp | 17 zero, one, two, three, four enumerator 24 return I(three); in test() 36 if (y != three) in main() 41 if (y != three) { in main() 47 if (x != three) in main() 49 if (y != three) in main()
|
/external/mesa3d/src/glsl/glcpp/tests/ |
D | 054-if-with-macros.c | 3 #define three 3 macro 10 #if three >= two 15 #if two + three <= five 20 #if five - two == three 25 #if one > three
|