/third_party/icu/icu4c/source/data/lang/ |
D | en_XA.txt | 7 colAlternate{"[Îĝñöŕé Šýɱƀöļš Šöŕţîñĝ one two three]"} 8 colBackwards{"[Ŕéṽéŕšéð Åççéñţ Šöŕţîñĝ one two three]"} 9 colCaseFirst{"[Ûþþéŕçåšé⁄Ļöŵéŕçåšé Öŕðéŕîñĝ one two three]"} 10 colCaseLevel{"[Çåšé Šéñšîţîṽé Šöŕţîñĝ one two three]"} 11 colNormalization{"[Ñöŕɱåļîžéð Šöŕţîñĝ one two three]"} 13 colReorder{"[Šçŕîþţ⁄Ɓļöçķ Ŕéöŕðéŕîñĝ one two three]"} 17 d0{"[Ţŕåñšƒöŕɱ Ðéšţîñåţîöñ one two three]"} 18 em{"[Éɱöĵî Þŕéšéñţåţîöñ Šţýļé one two three]"} 19 fw{"[Ƒîŕšţ ðåý öƒ ŵééķ one two three]"} 20 h0{"[Ṁîẋéð‐îñ Ļåñĝûåĝé one two three]"} [all …]
|
/third_party/boost/libs/algorithm/test/ |
D | hex_test2.cpp | 37 std::list<char> one, two, three; in test_to_hex() local 41 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex() 43 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex() 46 one.clear (); two.clear (); three.clear (); in test_to_hex() 50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex() 52 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex() 59 std::list<char> one, two, three; in test_to_hex() local 63 boost::algorithm::hex ( arg.begin (), arg.end (), std::front_inserter ( three )); in test_to_hex() 65 BOOST_CHECK ( std::equal ( two.begin (), two.end (), three.begin ())); in test_to_hex() 69 one.clear (); two.clear (); three.clear (); in test_to_hex() [all …]
|
D | hex_test1.cpp | 24 String arg, argh, one, two, three, four; in test_to_hex() local 28 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex() 31 BOOST_CHECK ( one == three ); in test_to_hex() 34 one.clear (); two.clear (); three.clear (); four.clear (); in test_to_hex() 37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex() 40 BOOST_CHECK ( one == three ); in test_to_hex() 49 String arg, argh, one, two, three, four; in test_to_hex_lower() local 53 boost::algorithm::hex_lower ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex_lower() 56 BOOST_CHECK ( one == three ); in test_to_hex_lower() 59 one.clear (); two.clear (); three.clear (); four.clear (); in test_to_hex_lower() [all …]
|
D | hex_test3.cpp | 32 Stream one, two, three; in test_to_hex() local 36 boost::algorithm::hex ( arg.begin (), arg.end (), Iter ( three )); in test_to_hex() 39 BOOST_CHECK ( one.str () == three.str ()); in test_to_hex() 41 one.str (String()); two.str (String()); three.str (String()); in test_to_hex() 44 boost::algorithm::unhex ( argh.begin (), argh.end (), Iter ( three )); in test_to_hex() 46 BOOST_CHECK ( one.str () == three.str ()); in test_to_hex() 60 Stream one, two, three; in test_from_hex_success() local 64 boost::algorithm::unhex ( arg.begin (), arg.end (), Iter ( three )); in test_from_hex_success() 67 BOOST_CHECK ( one.str () == three.str ()); in test_from_hex_success() 70 one.str (String()); two.str (String()); three.str (String()); in test_from_hex_success() [all …]
|
/third_party/icu/icu4c/source/data/region/ |
D | en_XA.txt | 25 057{"[Ṁîçŕöñéšîåñ Ŕéĝîöñ one two three]"} 34 202{"[Šûƀ‐Šåĥåŕåñ Ńŕîçå one two three]"} 38 AE{"[Ûñîţéð Åŕåƀ Éɱîŕåţéš one two three]"} 40 AG{"[Åñţîĝûå ⅋ Ɓåŕƀûðå one two three]"} 53 BA{"[Ɓöšñîå ⅋ Ĥéŕžéĝöṽîñå one two three]"} 66 BQ{"[Çåŕîƀƀéåñ Ñéţĥéŕļåñðš one two three]"} 75 CC{"[Çöçöš (Ķééļîñĝ) Κļåñðš one two three]"} 77 CF{"[Çéñţŕåļ Ńŕîçåñ Ŕéþûƀļîç one two three]"} 78 CG{"[Çöñĝö ‐ Ɓŕåžžåṽîļļé one two three]"} 86 CP{"[Çļîþþéŕţöñ Κļåñð one two three]"} [all …]
|
/third_party/boost/libs/range/test/adaptor_test/ |
D | ref_unwrapped.cpp | 29 int three = 3; in BOOST_AUTO_TEST_CASE() local 31 std::vector<std::reference_wrapper<int>> input_values{one, two, three}; in BOOST_AUTO_TEST_CASE() 33 const std::vector<int*> expected{&one, &two, &three}; in BOOST_AUTO_TEST_CASE() 51 int three = 3; in BOOST_AUTO_TEST_CASE() local 53 const std::vector<std::reference_wrapper<int>> input_values{one, two, three}; in BOOST_AUTO_TEST_CASE() 55 const std::vector<int*> expected{&one, &two, &three}; in BOOST_AUTO_TEST_CASE() 73 const int three = 3; in BOOST_AUTO_TEST_CASE() local 75 const std::vector<std::reference_wrapper<const int>> input_values{one, two, three}; in BOOST_AUTO_TEST_CASE() 77 const std::vector<const int*> expected{&one, &two, &three}; in BOOST_AUTO_TEST_CASE()
|
/third_party/python/Lib/distutils/tests/ |
D | test_dep_util.py | 39 three = os.path.abspath(__file__) # I am the old file 45 self.assertEqual(newer_pairwise([one, two], [three, four]), 46 ([one],[three])) 54 three = os.path.join(sources, 'three') 61 self.write_file(three) 62 self.assertTrue(newer_group([one, two, three], old_file)) 63 self.assertFalse(newer_group([one, two, old_file], three)) 67 self.assertRaises(OSError, newer_group, [one, two, old_file], three) 69 self.assertFalse(newer_group([one, two, old_file], three, 72 self.assertTrue(newer_group([one, two, old_file], three,
|
/third_party/boost/libs/hana/test/fold_left/ |
D | ref.cpp | 21 int& three = hana::fold_left(xs, state, [](int&, int& i) -> int& { in main() local 24 BOOST_HANA_RUNTIME_CHECK(three == 3); in main() 25 three = 10; in main() 33 int& three = hana::fold_left(xs, [](int&, int& i) -> int& { in main() local 36 BOOST_HANA_RUNTIME_CHECK(three == 3); in main() 37 three = 10; in main()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | listformattertest.cpp | 114 three("Charlie", -1, US_INV), four("Delta", -1, US_INV) { in ListFormatterTest() 129 UnicodeString three, UnicodeString four, UnicodeString results[4], const char* testName) { in CheckFourCases() argument 142 UnicodeString input3[] = {one, two, three}; in CheckFourCases() 145 UnicodeString input4[] = {one, two, three, four}; in CheckFourCases() 150 UnicodeString three, UnicodeString four, UnicodeString results[4], const char* testName) { in RecordFourCases() argument 161 UnicodeString input3[] = {one, two, three}; in RecordFourCases() 163 UnicodeString input4[] = {one, two, three, four}; in RecordFourCases() 176 one + ", " + two + ", " + three, in TestRoot() 177 one + ", " + two + ", " + three + ", " + four in TestRoot() 180 CheckFourCases("", one, two, three, four, results, "TestRoot()"); in TestRoot() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | arrayLiteralTypeInference.types | 27 >[ { id: 2, trueness: false }, { id: 3, name: "three" }] : ({ id: number; trueness: boolean; … 36 { id: 3, name: "three" } 37 >{ id: 3, name: "three" } : { id: number; name: string; } 41 >"three" : "three" 82 >[ { id: 2, trueness: false }, { id: 3, name: "three" } ] : ({ id: number; truenes… 91 { id: 3, name: "three" } 92 >{ id: 3, name: "three" } : { id: number; name: string; } 96 >"three" : "three"
|
D | nonNullParameterExtendingStringAssignableToString.types | 11 let three = Boolean() ? one : two; 12 >three : T | U 31 foo(three!); // this line is the important one 32 >foo(three!) : void 34 >three! : NonNullable<T> | NonNullable<U> 35 >three : T | U
|
D | tryCatchFinallyControlFlow.types | 594 type State = { tag: "one" } | { tag: "two" } | { tag: "three" }; 598 >tag : "three" 619 state = { tag: "three" }; 620 >state = { tag: "three" } : { tag: "three"; } 622 >{ tag: "three" } : { tag: "three"; } 623 >tag : "three" 624 >"three" : "three" 632 >state.tag : "one" | "two" | "three" 634 >tag : "one" | "two" | "three" 639 >state.tag : "one" | "two" | "three" [all …]
|
D | nonNullParameterExtendingStringAssignableToString.symbols | 15 let three = Boolean() ? one : two; 16 >three : Symbol(three, Decl(nonNullParameterExtendingStringAssignableToString.ts, 3, 7)) 29 foo(three!); // this line is the important one 31 >three : Symbol(three, Decl(nonNullParameterExtendingStringAssignableToString.ts, 3, 7))
|
D | nonNullParameterExtendingStringAssignableToString.js | 5 let three = Boolean() ? one : two; variable 8 foo(three!); // this line is the important one 14 var three = Boolean() ? one : two; 17 foo(three); // this line is the important one
|
D | unionTypeFromArrayLiteral.types | 19 var arr3Tuple: [number, string] = [3, "three"]; // [number, string] 21 >[3, "three"] : [number, string] 23 >"three" : "three" 25 var arr4Tuple: [number, string] = [3, "three", "hello"]; // [number, string, string] 27 >[3, "three", "hello"] : [number, string, string] 29 >"three" : "three"
|
/third_party/json/doc/examples/ |
D | basic_json__CompatibleType.output | 2 {"one":1,"three":3,"two":2} 3 {"one":1.2,"three":3.4,"two":2.3} 4 {"one":true,"three":false,"two":true} 5 {"one":true,"three":false,"two":true} 14 ["four","one","three","two"] 15 ["four","three","two","one"]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | exponentiation.js | 17 var three = 3 variable 23 assert(two ** three ** two === 512) 24 assert((two ** three) ** two === 64) 25 assert(two ** (three ** two) === 512) 28 assert(two ** two * three ** three === 4 * 27)
|
/third_party/typescript_eslint/packages/shared-fixtures/fixtures/typescript/basics/ |
D | optional-chain-with-parens.src.ts | 3 (one?.two).three; 4 (one.two?.three); 5 (one.two?.three).four; 6 (one.two?.three?.four); 7 (one.two?.three?.four).five;
|
D | optional-chain.src.ts | 3 one?.two.three; 4 one.two?.three; 5 one.two?.three.four; 6 one.two?.three?.four;
|
/third_party/skia/src/utils/ |
D | SkBase64.cpp | 75 int three = 0; in Decode() local 81 three = bytes[2]; in Decode() 82 two |= three >> 2; in Decode() 83 three = (uint8_t) ((three << 6) & 0xFF); in Decode() 84 three |= bytes[3]; in Decode() 85 SkASSERT(one < 256 && two < 256 && three < 256); in Decode() 97 dst[i] = (unsigned char) three; in Decode()
|
/third_party/mesa3d/src/compiler/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
|
/third_party/boost/libs/math/example/ |
D | binomial_example_nag.cpp | 67 binomial_distribution<>three(100, 0.750); in main() local 68 cout << setw(4) << (int)three.trials() << " " << three.success_fraction() in main() 69 << " " << 67 << " " << cdf(three, 67) << " " << cdf(complement(three, 67)) in main() 70 << " " << pdf(three, 67) << endl; in main()
|
/third_party/flutter/skia/src/utils/ |
D | SkBase64.cpp | 77 int three = 0; in decode() local 83 three = bytes[2]; in decode() 84 two |= three >> 2; in decode() 85 three = (uint8_t) ((three << 6) & 0xFF); in decode() 86 three |= bytes[3]; in decode() 87 SkASSERT(one < 256 && two < 256 && three < 256); in decode() 99 *dst = (unsigned char) three; in decode()
|
/third_party/toybox/tests/ |
D | cp.test | 34 touch two/three 37 rm -rf two three walrus 85 mkdir -p one/two/three/four 86 touch one/two/three/five 98 mkdir one; touch one/two; cp one/two one/three 102 mkdir one; touch one/two; ln -s two one/three
|
/third_party/boost/boost/math/special_functions/detail/ |
D | hypergeometric_rational.hpp | 24 static const T zero = T(0), one = T(1), two = T(2), three = T(3); in hypergeometric_1F1_rational() local 35 T xn0 = three; in hypergeometric_1F1_rational() 41 T b3 = one + ((two + b2) * (((two + ap) / three) * ct2)); in hypergeometric_1F1_rational() 43 ct1 = three; in hypergeometric_1F1_rational() 92 static const T one = T(1), two = T(2), three = T(3), four = T(4), in hypergeometric_2F1_rational() local 103 const T abz2 = abz1 + (sabz + (three * z)); in hypergeometric_2F1_rational() 111 T b3 = one + ((abz2 / ct1) * (one + (abz1 / ((-six) + (three * ct1))))); in hypergeometric_2F1_rational() 131 T xi = three; in hypergeometric_2F1_rational() 156 d[5] += three * d[4]; in hypergeometric_2F1_rational()
|