Home
last modified time | relevance | path

Searched refs:three (Results 1 – 25 of 873) sorted by relevance

12345678910>>...35

/external/icu/icu4c/source/test/intltest/
Dlistformattertest.cpp23 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 …]
Dlistformattertest.h46 UnicodeString three,
53 UnicodeString three,
62 const UnicodeString three; variable
/external/libcxxabi/test/
Dtest_vector1.pass.cpp67 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()
81three = __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()
99three = __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/v8/test/mjsunit/
Dsmi-ops-inlined.js443 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 …]
Dsmi-ops.js450 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/v8/test/mjsunit/regress/
Dregress-deep-proto.js34 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);
Dregress-crbug-107996.js47 var three = 3;
53 fourteen = three + four + seven;
/external/guava/guava-tests/test/com/google/common/cache/
DLocalLoadingCacheTest.java122 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()
198 Object three = new Object(); in testNoStats() local
[all …]
/external/clang/test/CodeGenCXX/
Dcp-blocks-linetables.cpp17 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/
D054-if-with-macros.c3 #define three 3 macro
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
25 #if one > three
/external/skia/src/utils/
DSkBase64.cpp78 int three = 0; in decode() local
84 three = bytes[2]; in decode()
85 two |= three >> 2; in decode()
86 three = (uint8_t) (three << 6); in decode()
87 three |= bytes[3]; in decode()
88 SkASSERT(one < 256 && two < 256 && three < 256); in decode()
100 *dst = (unsigned char) three; in decode()
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DCodeSignerTest.java70 CodeSigner three = new CodeSigner(cpath, null); in testEqualsObject() local
78 assertFalse(one.equals(three)); in testEqualsObject()
79 assertFalse(three.equals(one)); in testEqualsObject()
80 assertTrue(three.equals(three)); in testEqualsObject()
82 assertFalse(three.equals(four)); in testEqualsObject()
/external/toybox/tests/
Drmdir.test19 mkdir one two three
37 mkdir -p temp/one/two/three
44 mkdir -p one/two/three
48 mkdir -p one/two/three
Dcp.test31 touch two/three
34 rm -rf two three walrus
79 mkdir -p one/two/three/four
80 touch one/two/three/five
Dxargs.test22 touch one two three
25 rm one two three
/external/strace/tests/
Dmmsg.expected1 …}], msg_controllen=0, msg_flags=0}, 6}, {{msg_name(0)=NULL, msg_iov(1)=[{"three", 5}], msg_control…
9 | 00000 74 68 72 65 65 three |
10 …}], msg_controllen=0, msg_flags=0}, 6}, {{msg_name(0)=NULL, msg_iov(1)=[{"three", 5}], msg_control…
18 | 00000 74 68 72 65 65 three |
Dmmsg.c47 char three[] = "three"; in main() local
57 .iov_base = three, in main()
58 .iov_len = sizeof(three) - 1 in main()
/external/compiler-rt/test/asan/TestCases/Linux/
Dclang_gcc_abi.cc13 volatile int three = 3; in boom() local
14 char * volatile s = (char *)malloc(three); in boom()
16 return s[three]; //BOOM in boom()
/external/v8/test/mjsunit/compiler/
Dregress-stacktrace-methods.js34 Svin.prototype.two = function() { /* xxxxxxx */ o.three(); }
38 Hest.prototype.three = function() { if (v == 42) throw new Error("urg"); } method in Hest
48 %OptimizeFunctionOnNextCall(Hest.prototype.three);
/external/caliper/examples/src/main/java/examples/
DVarargsBenchmark.java42 @Override long three(long a, long b, long c) { in three() method
66 @Override long three(long a, long b, long c) { in three() method
67 return VarargsBenchmark.three(a, b, c); in three()
87 abstract long three(long a, long b, long c); in three() method in VarargsBenchmark.Strategy
112 private static long three(long a, long b, long c) { in three() method in VarargsBenchmark
184 dummy += strategy.three( in threeArguments()
/external/icu/icu4c/source/test/cintltst/
Dchashtst.c101 static const char three[6] = {0x74, 0x68, 0x72, 0x65, 0x65, 0}; /* "three" */ in TestBasic() local
121 _put(hash, three, 3, 0); in TestBasic()
126 _get(hash, three, 3); in TestBasic()
134 if(_compareChars((void*)one, (void*)three) == TRUE || in TestBasic()
140 if(_compareIChars((void*)one, (void*)three) == TRUE || in TestBasic()
161 static const UChar three[6] = {0x0074, 0x0068, 0x0072, 0x0065, 0x0065, 0}; /* L"three" */ in TestOtherAPI() local
186 uhash_puti(hash, (void*)three, 3, &status); in TestOtherAPI()
/external/llvm/test/MC/ELF/
Ddot-symbol-assignment.s11 three: label
15 . = three + 9
/external/clang/test/CodeGen/
Ddesignated-initializers.c94 int three; member
105 .a.three = 3,
111 .a.three = 13,
/external/markdown/tests/misc/
Dem_strong.txt13 three asterisks: ***
17 three underscores: ___
/external/e2fsprogs/lib/ext2fs/
Dres_gdt.c26 static unsigned int list_backups(ext2_filsys fs, unsigned int *three, in list_backups() argument
29 unsigned int *min = three; in list_backups()
135 unsigned int three = 1, five = 5, seven = 7; in ext2fs_create_resize_inode() local
176 while ((grp = list_backups(fs, &three, &five, &seven)) < in ext2fs_create_resize_inode()

12345678910>>...35