/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/typescript/tests/baselines/reference/ |
D | readonlyPropertySubtypeRelationDirected.js | 12 const three = (condition) ? one : two; 14 three.a = 'foo'; 18 three.a = 'foo2'; 20 return three; 31 const three = (condition) ? two : one; 33 three.a = 'foo'; 37 three.a = 'foo2'; 39 return three; 51 const three = (condition) ? one : two; 53 three.a = 'foo'; [all …]
|
D | readonlyPropertySubtypeRelationDirected.symbols | 3 // When the non-readonly type is declared first, the unioned type of `three` in `doSomething` is ne… 20 const three = (condition) ? one : two; 21 >three : Symbol(three, Decl(one.ts, 8, 9)) 26 three.a = 'foo'; 27 >three.a : Symbol(a, Decl(one.ts, 3, 12)) 28 >three : Symbol(three, Decl(one.ts, 8, 9)) 33 three.a = 'foo2'; 34 >three.a : Symbol(a, Decl(one.ts, 3, 12)) 35 >three : Symbol(three, Decl(one.ts, 8, 9)) 38 return three; [all …]
|
D | contextualOverloadListFromArrayUnion.symbols | 29 === tests/cases/compiler/three.ts === 32 >ResizeObserverCallback : Symbol(ResizeObserverCallback, Decl(three.ts, 0, 0), Decl(three.ts, 3, 1)) 35 >entries : Symbol(entries, Decl(three.ts, 2, 5)) 37 >observer : Symbol(observer, Decl(three.ts, 2, 36)) 41 >ResizeObserverCallback : Symbol(ResizeObserverCallback, Decl(three.ts, 0, 0), Decl(three.ts, 3, 1)) 44 >entries : Symbol(entries, Decl(three.ts, 5, 5)) 46 >observer : Symbol(observer, Decl(three.ts, 5, 36)) 51 >resizeObserver : Symbol(resizeObserver, Decl(three.ts, 8, 5)) 53 >entry : Symbol(entry, Decl(three.ts, 8, 44)) 56 >entry : Symbol(entry, Decl(three.ts, 8, 44)) [all …]
|
D | readonlyPropertySubtypeRelationDirected.types | 3 // When the non-readonly type is declared first, the unioned type of `three` in `doSomething` is ne… 24 const three = (condition) ? one : two; 25 >three : { readonly a: string; } 32 three.a = 'foo'; 33 >three.a = 'foo' : "foo" 34 >three.a : any 35 >three : { readonly a: string; } 41 three.a = 'foo2'; 42 >three.a = 'foo2' : "foo2" 43 >three.a : any [all …]
|
D | findAllReferencesUmdModuleAsGlobalConst.baseline.jsonc | 2 // import * as _THREE from '[|three|]'; 11 // === /node_modules/@types/three/index.d.ts === 12 // export * from "./three-core"; 20 "fileName": "/node_modules/@types/three/index.d.ts", 22 "name": "module THREE\nvar THREE: typeof import(\"/node_modules/@types/three/index\")", 81 "text": "\"/node_modules/@types/three/index\"", 96 "fileName": "/node_modules/@types/three/index.d.ts", 144 // import * as _THREE from '/*FIND ALL REFS*/[|three|]'; 153 // === /node_modules/@types/three/index.d.ts === 154 // export * from "./three-core"; [all …]
|
D | readonlyPropertySubtypeRelationDirected.errors.txt | 5 tests/cases/compiler/three.ts(11,11): error TS2540: Cannot assign to 'a' because it is a read-only … 6 tests/cases/compiler/three.ts(15,11): error TS2540: Cannot assign to 'a' because it is a read-only … 13 …// When the non-readonly type is declared first, the unioned type of `three` in `doSomething` is n… 20 const three = (condition) ? one : two; 22 three.a = 'foo'; 28 three.a = 'foo2'; 32 return three; 36 …// When the non-readonly type is declared first, the unioned type of `three` in `doSomething` is n… 43 const three = (condition) ? two : one; 45 three.a = 'foo'; [all …]
|
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 | tryCatchFinallyControlFlow.types | 594 type State = { tag: "one" } | { tag: "two" } | { tag: "three" }; 595 >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" [all …]
|
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! : string 35 >three : string | undefined
|
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 | 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/typescript/tests/cases/compiler/ |
D | readonlyPropertySubtypeRelationDirected.ts | 11 const three = (condition) ? one : two; constant 13 three.a = 'foo'; 17 three.a = 'foo2'; 19 return three; 30 const three = (condition) ? two : one; constant 32 three.a = 'foo'; 36 three.a = 'foo2'; 38 return three; 50 const three = (condition) ? one : two; constant 52 three.a = 'foo'; [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/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/icu/icu4c/source/test/intltest/ |
D | listformattertest.cpp | 115 three("Charlie", -1, US_INV), four("Delta", -1, US_INV) { in ListFormatterTest() 130 UnicodeString three, UnicodeString four, UnicodeString results[4], const char* testName) { in CheckFourCases() argument 143 UnicodeString input3[] = {one, two, three}; in CheckFourCases() 146 UnicodeString input4[] = {one, two, three, four}; in CheckFourCases() 151 UnicodeString three, UnicodeString four, UnicodeString results[4], const char* testName) { in RecordFourCases() argument 162 UnicodeString input3[] = {one, two, three}; in RecordFourCases() 164 UnicodeString input4[] = {one, two, three, four}; in RecordFourCases() 177 one + ", " + two + ", " + three, in TestRoot() 178 one + ", " + two + ", " + three + ", " + four in TestRoot() 181 CheckFourCases("", one, two, three, four, results, "TestRoot()"); in TestRoot() [all …]
|
/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/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/json/docs/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"]
|
D | ordered_map.output | 1 m_ordered = { one:eins two:zwei three:drei } 2 m_std = { one:eins three:drei two:zwei } 3 m_ordered = { two:zwei three:drei one:eins } 4 m_std = { one:eins three:drei two:zwei }
|
/third_party/json/docs/mkdocs/docs/features/ |
D | json_pointer.md | 16 "three": [true, false] 25 | `` | `#!json {"array":["A","B","C"],"nested":{"one":1,"two":2,"three":[true,false]… 30 | `/nested` | `#!json {"one":1,"two":2,"three":[true,false]}` … 33 | `/nested/three` | `#!json [true,false]` … 34 | `/nested/three/0` | `#!json true` … 35 | `/nested/three/1` | `#!json false` … 69 "three": [true, false] 76 auto val2 = j.at[json::json_pointer("/nested/three/1")]; // false 93 "three": [true, false] 110 "/nested/three/0": true, [all …]
|
/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/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/node/test/parallel/ |
D | test-performance-timeline.mjs | 15 performance.mark('three'); 17 performance.measure('three', 'three'); 23 assert.deepStrictEqual(entries.map((x) => x.name), ['one', 'two', 'three']); 25 assert.deepStrictEqual(allEntries.map((x) => x.name), ['one', 'one', 'two', 'two', 'three', 'three'…
|
/third_party/rust/crates/proc-macro-error/tests/ui/ |
D | emit.stderr | 4 4 | emit!(one, two, three, four, five); 10 4 | emit!(one, two, three, four, five); 16 4 | emit!(one, two, three, four, five); 22 4 | emit!(one, two, three, four, five); 28 4 | emit!(one, two, three, four, five);
|