Home
last modified time | relevance | path

Searched refs:item2 (Results 1 - 25 of 31) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DgenericRestArgs.js8 function makeArrayGOpt<T>(item1?: T, item2?: T, item3?: T) {
9 return [item1, item2, item3];
27 function makeArrayGOpt(item1, item2, item3) {
28 return [item1, item2, item3];
H A DtypePredicateFreshLiteralWidening.js20 const item2 = satisfies<Item>()({ value: "2" });
26 const values1 = [item1, item2, item3].map(item => item.value);
39 var item2 = satisfies()({ value: "2" });
43 var values1 = [item1, item2, item3].map(function (item) { return item.value; });
H A DfixTypeParameterInSignatureWithRestParameters.js2 function bar<T>(item1: T, item2: T) { }
6 function bar(item1, item2) { }
/third_party/node/deps/openssl/openssl/util/
H A 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/
H A 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/
H A Dtest_widgets.py1429 item2 = self.tv.insert(item_id, 'end')
1431 self.assertEqual(self.tv.get_children(item_id), (item2, ))
1442 item2 = self.tv.insert('', 'end')
1443 self.assertEqual(self.tv.get_children(), (item1, item2))
1445 self.tv.delete(item1, item2)
1450 item2 = self.tv.insert(item_id, 'end')
1458 self.assertEqual(self.tv.get_children(item_id), (item2, ))
1467 self.assertEqual(self.tv.get_children(item_id), (item2, ))
1470 self.tv.move(item2, '', 'end')
1471 self.assertEqual(self.tv.get_children(), (item_id, item2))
[all...]
/third_party/node/test/parallel/
H A Dtest-vm-not-strict.js14 var item2 = vm.runInThisContext(` variable
22 data.push(item2);
/third_party/cJSON/tests/
H A Dmisc_tests.c367 cJSON *item2 = cJSON_CreateString("corrupted array item3"); in cjson_functions_should_not_crash_with_null_pointers() local
372 add_item_to_array(array, item2); in cjson_functions_should_not_crash_with_null_pointers()
374 originalPrev = item2->prev; in cjson_functions_should_not_crash_with_null_pointers()
375 item2->prev = NULL; in cjson_functions_should_not_crash_with_null_pointers()
461 /* restore corrupted item2 to delete it */ in cjson_functions_should_not_crash_with_null_pointers()
462 item2->prev = originalPrev; in cjson_functions_should_not_crash_with_null_pointers()
630 cJSON *item2 = cJSON_Parse("{\"b\":\"456\"}"); in cjson_delete_item_from_array_should_not_broken_list_structure() local
637 cJSON_AddItemToArray(array, item2); in cjson_delete_item_from_array_should_not_broken_list_structure()
659 cJSON *item2 = cJSON_CreateStringReference(reference_valuestring); in cjson_set_valuestring_to_object_should_not_leak_memory() local
664 cJSON_AddItemToObject(root, "two", item2); in cjson_set_valuestring_to_object_should_not_leak_memory()
[all...]
/third_party/PyYAML/tests/lib/
H A 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/rust/crates/nom/src/branch/
H A 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/
H A Dtt.rs24 let item2 = match s2.next() { in eq()
28 if TokenTreeHelper(&item1) != TokenTreeHelper(&item2) { in eq()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktGlobalPriorityQueueUtils.cpp64 VkQueueFamilyProperties2& item2 = familyProperties2[i]; in findQueueFamilyIndex() local
65 item2 = {}; in findQueueFamilyIndex()
66 item2.sType = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2; in findQueueFamilyIndex()
67 item2.pNext = item; in findQueueFamilyIndex()
/third_party/node/lib/internal/util/
H A Dcomparisons.js499 const item2 = b.get(key);
500 if (((item2 === undefined && !b.has(key)) ||
501 !innerDeepEqual(item1, item2, strict, memo))) {
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/
H A DCollectionUtilities.java680 T item2 = iterator2.next(); in compareEntrySets()
681 diff = CollectionUtilities.compare(item1, item2); in compareEntrySets()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java677 T item2 = iterator2.next(); in compareEntrySets()
678 diff = CollectionUtilities.compare(item1, item2); in compareEntrySets()
/third_party/python/Lib/unittest/
H A Dcase.py1020 item2 = seq2[i]
1026 if item1 != item2:
1028 ((i,) + _common_shorten_repr(item1, item2)))
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUTF16Test.java1617 for (String item2 : tests) { in TestUtilities()
1618 String nonNull2 = item2 == null ? "" : item2; in TestUtilities()
1620 int fValue = Integer.signum(UTF16.compareCodePoint(expected, item2)); in TestUtilities()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUTF16Test.java1623 for (String item2 : tests) { in TestUtilities()
1624 String nonNull2 = item2 == null ? "" : item2; in TestUtilities()
1626 int fValue = Integer.signum(UTF16.compareCodePoint(expected, item2)); in TestUtilities()
/third_party/python/Python/
H A Dinitconfig.c420 wchar_t *item2 = _PyMem_RawWcsdup(item); in PyWideStringList_Insert() local
421 if (item2 == NULL) { in PyWideStringList_Insert()
428 PyMem_RawFree(item2); in PyWideStringList_Insert()
438 items2[index] = item2; in PyWideStringList_Insert()
/third_party/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.cpp236 CParseItem item2; in AddUnknownItem() local
237 item2.Offset = _maxEndOffset; in AddUnknownItem()
238 item2.Size = next - _maxEndOffset; in AddUnknownItem()
240 _items.Add(item2); in AddUnknownItem()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DPluralRulesTest.java1193 PluralRules item2 = serializeAndDeserialize(item, size); in TestSerialization()
1196 if (!assertEquals(locale + "\tPlural rules before and after serialization", item, item2)) { in TestSerialization()
/third_party/libdrm/tests/tegra/
H A Dvic42.h553 uint64_t item2 : 7; /* 38..32 */ member
/third_party/protobuf/src/google/protobuf/util/
H A Dmessage_differencer_unittest.cc135 protobuf_unittest::TestDiffMessage::Item* item2 = msg2.add_item(); in TEST() local
137 differencer.TreatAsSet(item2->GetDescriptor()->FindFieldByName("ra")); in TEST()
140 item2->add_ra(i); in TEST()
143 item2->add_ra(1001); in TEST()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateTimePatternGenerator.java2013 String item2 = it2.next(); // same length so safe in skeletonsAreSimilar()
2014 int index2 = getCanonicalIndex(item2, false); in skeletonsAreSimilar()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDateTimePatternGenerator.java1891 String item2 = it2.next(); // same length so safe in skeletonsAreSimilar()
1892 int index2 = getCanonicalIndex(item2, false); in skeletonsAreSimilar()

Completed in 40 milliseconds

12