Home
last modified time | relevance | path

Searched refs:item2 (Results 1 – 25 of 49) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DgenericRestArgs.types35 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[]
DfixTypeParameterInSignatureWithRestParameters.types2 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
DgenericRestArgs.js8 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];
DgenericRestArgs.symbols27 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))
DtypePredicateFreshLiteralWidening.js20 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; });
DfixTypeParameterInSignatureWithRestParameters.symbols2 function bar<T>(item1: T, item2: T) { }
7 >item2 : Symbol(item2, Decl(fixTypeParameterInSignatureWithRestParameters.ts, 0, 25))
DtypePredicateFreshLiteralWidening.symbols58 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))
DtypePredicateFreshLiteralWidening.types49 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"; }
DnodeNextImportModeImplicitIndexResolution.symbols13 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))
DfixTypeParameterInSignatureWithRestParameters.js2 function bar<T>(item1: T, item2: T) { }
6 function bar(item1, item2) { } argument
DnodeNextImportModeImplicitIndexResolution.types15 import { item as item2 } from "./pkg"; // shouldn't work (`index.js` is _not_ assumed to be the en…
17 >item2 : any
DgenericRestArgs.errors.txt18 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) {
19 return [item1, item2, item3];
DnodeNextImportModeImplicitIndexResolution.js23 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/
Dmkdef.pl221 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/
Dmkdef.pl221 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/
Dtest_widgets.py1416 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/
Dtest-vm-not-strict.js14 var item2 = vm.runInThisContext(` variable
22 data.push(item2);
/third_party/typescript/tests/cases/compiler/
DgenericRestArgs.ts7 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) {
8 return [item1, item2, item3];
DtypePredicateFreshLiteralWidening.ts21 const item2 = satisfies<Item>()({ value: "2" }); constant
27 const values1 = [item1, item2, item3].map(item => item.value); constant
DfixTypeParameterInSignatureWithRestParameters.ts1 function bar<T>(item1: T, item2: T) { }
DnodeNextImportModeImplicitIndexResolution.ts22 import { item as item2 } from "./pkg"; // shouldn't work (`index.js` is _not_ assumed to be the en…
/third_party/PyYAML/tests/lib/
Dtest_structure.py117 for item1, item2 in zip(node1.value, node2.value):
120 item2 = (item2,)
121 for subnode1, subnode2 in zip(item1, item2):
/third_party/cJSON/tests/
Dmisc_tests.c357 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/
Dmod.rs173 $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/
Dtt.rs24 let item2 = match s2.next() { in eq() localVariable
28 if TokenTreeHelper(&item1) != TokenTreeHelper(&item2) { in eq()

12