Searched defs:three (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-stacktrace.js29 eval("function two() { /* xxxxxxx */ three(); }");
35 function three() { function
43 var p3 = stack.indexOf("at three");
H A Dregress-stacktrace-methods.js34 Svin.prototype.two = function() { /* xxxxxxx */ o.three(); }
38 Hest.prototype.three = function() { if (v == 42) throw new Error("urg"); }
48 %OptimizeFunctionOnNextCall(Hest.prototype.three);
57 var p3 = stack.indexOf("at Hest.three");
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A 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/clang/test/PCH/Inputs/
H A Dchain-decls2.h5 struct three {}; // for verification struct
/external/llvm/test/MC/ELF/
H A Ddot-symbol-assignment.s11 three: label
/external/mesa3d/src/glsl/glcpp/tests/
H A 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/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp7 three, enumerator in enum:E
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dlistformattertest.h46 UnicodeString three,
53 UnicodeString three,
62 const UnicodeString three; member in class:ListFormatterTest
H A Dlistformattertest.cpp23 three("Charlie", -1, US_INV), four("Delta", -1, US_INV) {
38 UnicodeString three, UnicodeString four, UnicodeString results[4]) {
51 UnicodeString input3[] = {one, two, three};
54 UnicodeString input4[] = {one, two, three, four};
59 UnicodeString three, UnicodeString four, UnicodeString results[4]) {
70 UnicodeString input3[] = {one, two, three};
72 UnicodeString input4[] = {one, two, three, four};
85 one + ", " + two + ", " + three,
86 one + ", " + two + ", " + three + ", " + four
89 CheckFourCases("", one, two, three, fou
37 CheckFourCases(const char* locale_string, UnicodeString one, UnicodeString two, UnicodeString three, UnicodeString four, UnicodeString results[4]) argument
58 RecordFourCases(const Locale& locale, UnicodeString one, UnicodeString two, UnicodeString three, UnicodeString four, UnicodeString results[4]) argument
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-deep-proto.js34 var three = {bar: 0};
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/icu/icu4c/source/test/intltest/
H A Dlistformattertest.h46 UnicodeString three,
53 UnicodeString three,
62 const UnicodeString three; member in class:ListFormatterTest
H A Dlistformattertest.cpp23 three("Charlie", -1, US_INV), four("Delta", -1, US_INV) {
38 UnicodeString three, UnicodeString four, UnicodeString results[4]) {
51 UnicodeString input3[] = {one, two, three};
54 UnicodeString input4[] = {one, two, three, four};
59 UnicodeString three, UnicodeString four, UnicodeString results[4]) {
70 UnicodeString input3[] = {one, two, three};
72 UnicodeString input4[] = {one, two, three, four};
85 one + ", " + two + ", " + three,
86 one + ", " + two + ", " + three + ", " + four
89 CheckFourCases("", one, two, three, fou
37 CheckFourCases(const char* locale_string, UnicodeString one, UnicodeString two, UnicodeString three, UnicodeString four, UnicodeString results[4]) argument
58 RecordFourCases(const Locale& locale, UnicodeString one, UnicodeString two, UnicodeString three, UnicodeString four, UnicodeString results[4]) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dcp-blocks-linetables.cpp17 zero, one, two, three, four enumerator in enum:numbers
24 return I(three);
36 if (y != three)
41 if (y != three) {
47 if (x != three)
49 if (y != three)
/external/clang/test/Sema/
H A Dno-documentation-warn-tagdecl-specifier.c83 enum e8 { three }; enumerator in enum:e8
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dfldcw_check.S131 fldl three # load value onto fp stack
164 three: .long 0 # a floating point 3.0 label
/external/valgrind/main/exp-bbv/tests/x86/
H A Dfldcw_check.S85 fldl three # load value onto fp stack
128 three: .long 0 # a floating point 3.0 label
/external/chromium_org/third_party/skia/src/utils/
H A DSkBase64.cpp78 int three = 0; local
84 three = bytes[2];
85 two |= three >> 2;
86 three = (uint8_t) (three << 6);
87 three |= bytes[3];
88 SkASSERT(one < 256 && two < 256 && three < 256);
100 *dst = (unsigned char) three;
/external/libcxx/test/utilities/function.objects/unord.hash/
H A Denum.pass.cpp25 enum class Cardinals { zero, one, two, three, five=5 }; member in class:Cardinals
/external/skia/src/utils/
H A DSkBase64.cpp78 int three = 0; local
84 three = bytes[2];
85 two |= three >> 2;
86 three = (uint8_t) (three << 6);
87 three |= bytes[3];
88 SkASSERT(one < 256 && two < 256 && three < 256);
100 *dst = (unsigned char) three;
/external/chromium_org/net/spdy/
H A Dhpack_huffman_aggregator_test.cc119 SpdySessionKey key3(HostPortPair("three.com", 443), ProxyServer::Direct(),
134 // Creates three.com. Evicts two.com, as it's least-recently used.
135 HpackEncoder* three = peer_.ObtainEncoder(key3); local
137 EXPECT_NE(one, three);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dchashtst.c101 static const char three[6] = {0x74, 0x68, 0x72, 0x65, 0x65, 0}; /* "three" */ local
121 _put(hash, three, 3, 0);
126 _get(hash, three, 3);
134 if(_compareChars((void*)one, (void*)three) == TRUE ||
140 if(_compareIChars((void*)one, (void*)three) == TRUE ||
161 static const UChar three[6] = {0x0074, 0x0068, 0x0072, 0x0065, 0x0065, 0}; /* L"three" */ local
186 uhash_puti(hash, (void*)three, 3, &status);
/external/chromium_org/v8/test/mjsunit/
H A Dkeyed-call-ic.js56 F.prototype.three = function() {return 'three'; }
59 ['one', 'one', 'one', 'one', 'two', 'two', 'one', 'three', 'one', 'two'];
/external/e2fsprogs/lib/ext2fs/
H A Dres_gdt.c26 static unsigned int list_backups(ext2_filsys fs, unsigned int *three, argument
29 unsigned int *min = three;
135 unsigned int three = 1, five = 5, seven = 7; local
176 while ((grp = list_backups(fs, &three, &five, &seven)) <
/external/icu/icu4c/source/test/cintltst/
H A Dchashtst.c101 static const char three[6] = {0x74, 0x68, 0x72, 0x65, 0x65, 0}; /* "three" */ local
121 _put(hash, three, 3, 0);
126 _get(hash, three, 3);
134 if(_compareChars((void*)one, (void*)three) == TRUE ||
140 if(_compareIChars((void*)one, (void*)three) == TRUE ||
161 static const UChar three[6] = {0x0074, 0x0068, 0x0072, 0x0065, 0x0065, 0}; /* L"three" */ local
186 uhash_puti(hash, (void*)three, 3, &status);
/external/libcxxabi/test/
H A Dtest_vector1.cpp66 void *one, *two, *three; local
71 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc3 );
75 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, NULL, my_dealloc3 );
80 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc3 );
84 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, my_destruct, my_dealloc3 );
89 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc3 );
93 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, NULL, my_dealloc3 );
98 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc3 );
102 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, my_destruct, my_dealloc3 );
110 void *one, *two, *three; local
151 void *one, *two, *three; local
208 void *one, *two, *three; local
[all...]

Completed in 2865 milliseconds

12