/third_party/typescript/tests/baselines/reference/ |
D | genericRestArgs.types | 35 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) { 36 >makeArrayGOpt : <T>(item1?: T, item2?: T, item3?: T) => T[] 38 >item2 : T 41 return [item1, item2, item3]; 42 >[item1, item2, item3] : T[] 44 >item2 : T 50 >makeArrayGOpt : <T>(item1?: T, item2?: T, item3?: T) => T[]
|
D | fixTypeParameterInSignatureWithRestParameters.types | 2 function bar<T>(item1: T, item2: T) { } 3 >bar : <T>(item1: T, item2: T) => void 5 >item2 : T 9 >bar : <T>(item1: T, item2: T) => void
|
D | genericRestArgs.js | 8 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) { 9 return [item1, item2, item3]; 27 function makeArrayGOpt(item1, item2, item3) { argument 28 return [item1, item2, item3];
|
D | genericRestArgs.symbols | 27 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) { 32 >item2 : Symbol(item2, Decl(genericRestArgs.ts, 6, 36)) 37 return [item1, item2, item3]; 39 >item2 : Symbol(item2, Decl(genericRestArgs.ts, 6, 36))
|
D | typePredicateFreshLiteralWidening.js | 20 const item2 = satisfies<Item>()({ value: "2" }); constant 26 const values1 = [item1, item2, item3].map(item => item.value); 39 var item2 = satisfies()({ value: "2" }); variable 43 var values1 = [item1, item2, item3].map(function (item) { return item.value; });
|
D | fixTypeParameterInSignatureWithRestParameters.symbols | 2 function bar<T>(item1: T, item2: T) { } 7 >item2 : Symbol(item2, Decl(fixTypeParameterInSignatureWithRestParameters.ts, 0, 25))
|
D | typePredicateFreshLiteralWidening.symbols | 58 const item2 = satisfies<Item>()({ value: "2" }); 59 >item2 : Symbol(item2, Decl(typePredicateFreshLiteralWidening.ts, 18, 5)) 81 const values1 = [item1, item2, item3].map(item => item.value); 83 >[item1, item2, item3].map : Symbol(Array.map, Decl(lib.es5.d.ts, --, --)) 85 >item2 : Symbol(item2, Decl(typePredicateFreshLiteralWidening.ts, 18, 5))
|
D | typePredicateFreshLiteralWidening.types | 49 const item2 = satisfies<Item>()({ value: "2" }); 50 >item2 : { value: "2"; } 83 const values1 = [item1, item2, item3].map(item => item.value); 85 >[item1, item2, item3].map(item => item.value) : ("1" | "2" | null)[] 86 >[item1, item2, item3].map : <U>(callbackfn: (value: { value: "1"; } | { value: "2"; } | { value: n… 87 >[item1, item2, item3] : ({ value: "1"; } | { value: "2"; } | { value: null; })[] 89 >item2 : { value: "2"; }
|
D | nodeNextImportModeImplicitIndexResolution.symbols | 13 import { item as item2 } from "./pkg"; // shouldn't work (`index.js` is _not_ assumed to be the en… 14 >item2 : Symbol(item2, Decl(index.ts, 1, 8))
|
D | fixTypeParameterInSignatureWithRestParameters.js | 2 function bar<T>(item1: T, item2: T) { } 6 function bar(item1, item2) { } argument
|
D | nodeNextImportModeImplicitIndexResolution.types | 15 import { item as item2 } from "./pkg"; // shouldn't work (`index.js` is _not_ assumed to be the en… 17 >item2 : any
|
D | genericRestArgs.errors.txt | 18 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) { 19 return [item1, item2, item3];
|
D | nodeNextImportModeImplicitIndexResolution.js | 23 import { item as item2 } from "./pkg"; // shouldn't work (`index.js` is _not_ assumed to be the en…
|
/third_party/node/deps/openssl/openssl/util/ |
D | mkdef.pl | 221 my $item2 = shift; 223 my $verdict = $weight{$item1->type()} <=> $weight{$item2->type()}; 225 $verdict = $by_name->($item1, $item2); 237 my $item2 = shift; 239 my $verdict = $by_version->($item1, $item2); 241 $verdict = $by_unix->($item1, $item2);
|
/third_party/openssl/util/ |
D | mkdef.pl | 221 my $item2 = shift; 223 my $verdict = $weight{$item1->type()} <=> $weight{$item2->type()}; 225 $verdict = $by_name->($item1, $item2); 237 my $item2 = shift; 239 my $verdict = $by_version->($item1, $item2); 241 $verdict = $by_unix->($item1, $item2);
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 1416 item2 = self.tv.insert(item_id, 'end') 1418 self.assertEqual(self.tv.get_children(item_id), (item2, )) 1429 item2 = self.tv.insert('', 'end') 1430 self.assertEqual(self.tv.get_children(), (item1, item2)) 1432 self.tv.delete(item1, item2) 1437 item2 = self.tv.insert(item_id, 'end') 1445 self.assertEqual(self.tv.get_children(item_id), (item2, )) 1454 self.assertEqual(self.tv.get_children(item_id), (item2, )) 1457 self.tv.move(item2, '', 'end') 1458 self.assertEqual(self.tv.get_children(), (item_id, item2)) [all …]
|
/third_party/node/test/parallel/ |
D | test-vm-not-strict.js | 14 var item2 = vm.runInThisContext(` variable 22 data.push(item2);
|
/third_party/typescript/tests/cases/compiler/ |
D | genericRestArgs.ts | 7 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) { 8 return [item1, item2, item3];
|
D | typePredicateFreshLiteralWidening.ts | 21 const item2 = satisfies<Item>()({ value: "2" }); constant 27 const values1 = [item1, item2, item3].map(item => item.value); constant
|
D | fixTypeParameterInSignatureWithRestParameters.ts | 1 function bar<T>(item1: T, item2: T) { }
|
D | nodeNextImportModeImplicitIndexResolution.ts | 22 import { item as item2 } from "./pkg"; // shouldn't work (`index.js` is _not_ assumed to be the en…
|
/third_party/PyYAML/tests/lib/ |
D | test_structure.py | 117 for item1, item2 in zip(node1.value, node2.value): 120 item2 = (item2,) 121 for subnode1, subnode2 in zip(item1, item2):
|
/third_party/cJSON/tests/ |
D | misc_tests.c | 357 cJSON *item2 = cJSON_CreateString("corrupted array item3"); in cjson_functions_should_not_crash_with_null_pointers() local 362 add_item_to_array(array, item2); in cjson_functions_should_not_crash_with_null_pointers() 364 originalPrev = item2->prev; in cjson_functions_should_not_crash_with_null_pointers() 365 item2->prev = NULL; in cjson_functions_should_not_crash_with_null_pointers() 452 item2->prev = originalPrev; in cjson_functions_should_not_crash_with_null_pointers() 620 cJSON *item2 = cJSON_Parse("{\"b\":\"456\"}"); in cjson_delete_item_from_array_should_not_broken_list_structure() local 627 cJSON_AddItemToArray(array, item2); in cjson_delete_item_from_array_should_not_broken_list_structure() 649 cJSON *item2 = cJSON_CreateStringReference(reference_valuestring); in cjson_set_valuestring_to_object_should_not_leak_memory() local 654 cJSON_AddItemToObject(root, "two", item2); in cjson_set_valuestring_to_object_should_not_leak_memory()
|
/third_party/rust/crates/nom/src/branch/ |
D | mod.rs | 173 $name2:ident $ty2:ident $item2:ident 176 permutation_trait!(__impl $name1 $ty1 $item1, $name2 $ty2 $item2; $($name3 $ty3 $item3)*); 180 $name1:ident $ty1:ident $item1:ident $($name2:ident $ty2:ident $item2:ident)* 183 permutation_trait!(__impl $($name $ty $item),+ , $name1 $ty1 $item1; $($name2 $ty2 $item2)*);
|
/third_party/rust/crates/syn/src/ |
D | tt.rs | 24 let item2 = match s2.next() { in eq() localVariable 28 if TokenTreeHelper(&item1) != TokenTreeHelper(&item2) { in eq()
|