/third_party/python/Lib/test/ |
H A D | test_compare.py | 25 set1 = [2, 2.0, 2, 2+0j, Cmp(2.0)] variable in ComparisonSimpleTest 27 candidates = set1 + set2 32 if ((a in self.set1) and (b in self.set1)) or a is b:
|
H A D | test_set.py | 1797 set1 = {bad_eq()} 1800 self.assertRaises(ZeroDivisionError, set1.update, set2) 1803 set1 = {bad_dict_clear()} 1806 set1.symmetric_difference_update(dict2) 1845 set1.clear() 1853 set1 = self.constructor1(Bad() for _ in range(randrange(50))) 1857 return set1, set2 1861 set1, set2 = self.make_sets_of_bad_objects() 1863 function(set1, set2)
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cucdtst.c | 3215 USet *set1, *set2, *set3, *set4; in TestConsistency() local 3263 set1=uset_openPattern(hyphenPattern, 10, &errorCode); in TestConsistency() 3266 /* remove the Katakana middle dot(s) from set1 */ in TestConsistency() 3267 uset_remove(set1, 0x30fb); in TestConsistency() 3268 uset_remove(set1, 0xff65); /* halfwidth variant */ in TestConsistency() 3269 showAMinusB(set1, set2, "[:Hyphen:]", "[:Dash:]", false); in TestConsistency() 3278 showAIntersectB(set3, set1, "[:Cf:]", "[:Hyphen:]", false); in TestConsistency() 3285 uset_close(set1); in TestConsistency() 3297 set1=uset_openPattern(lowerPattern, 13, &errorCode); in TestConsistency() 3300 length=uset_getItem(set1, in TestConsistency() [all...] |
/third_party/rust/crates/regex/tests/ |
H A D | set.rs | 1 matset!(set1, &["a", "a"], "a", 0, 1);
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | usettest.cpp | 327 // set1 and set2 used to be built with the obsolete constructor taking in TestCloneEqualHash() 330 UnicodeSet *set1=new UnicodeSet(u"\\p{Lowercase Letter}", status); // :Ll: Letter, lowercase in TestCloneEqualHash() local 343 if (*set1 != *set1a) { in TestCloneEqualHash() 353 UnicodeSet *set1copy=new UnicodeSet(*set1); in TestCloneEqualHash() 354 if(*set1 != *set1copy || *set1 == *set2 || in TestCloneEqualHash() 355 getPairs(*set1) != getPairs(*set1copy) || in TestCloneEqualHash() 356 set1->hashCode() != set1copy->hashCode()){ in TestCloneEqualHash() 362 UnicodeSet set1equal=*set1; in TestCloneEqualHash() 364 if(set1equal != *set1 || set1equa in TestCloneEqualHash() [all...] |
H A D | ucdtest.cpp | 351 UnicodeSet set1, set2; in TestConsistency() local 352 if (nfcImpl->getCanonStartSet(0x49, set1)) { in TestConsistency() 361 if (set1!=set2) { in TestConsistency() 366 //compareUSets(set1, set2, in TestConsistency()
|
/third_party/googletest/googletest/test/ |
H A D | googletest-printers-test.cc | 1067 ::std::unordered_set<int> set1; in TEST() local 1068 set1.insert(1); in TEST() 1069 EXPECT_EQ("{ 1 }", Print(set1)); in TEST() 1075 ::std::unordered_multiset<int> set1(a, a + kSize); in TEST() 1078 const std::string result = Print(set1); in TEST() 1131 set<unsigned int> set1(a, a + 3); in TEST() 1132 EXPECT_EQ("{ 0, 3, 5 }", Print(set1)); in TEST() 1137 multiset<int> set1(a, a + 5); in TEST() 1138 EXPECT_EQ("{ 1, 1, 1, 2, 5 }", Print(set1)); in TEST()
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/ |
H A D | render_node_default_env.h | 106 RENDER_NS::IDescriptorSetBinder::Ptr set1; member
|
H A D | render_node_default_env.cpp | 214 auto& binder1 = *allDescriptorSets_.set1; in RenderData() 229 allDescriptorSets_.set1->GetDescriptorSetHandle() }; in RenderData() 425 allDescriptorSets_.set1 = descriptorSetMgr.CreateDescriptorSetBinder( in CreateDescriptorSets()
|
H A D | render_node_default_material_deferred_shading.cpp | 194 allDescriptorSets_.set1->GetDescriptorSetHandle(), in RenderData() 225 auto& binder1 = *allDescriptorSets_.set1; in UpdateSet01() 459 allDescriptorSets_.set1 = descriptorSetMgr.CreateDescriptorSetBinder( in CreateDescriptorSets()
|
H A D | render_node_default_shadow_render_slot.cpp | 363 cmdList.BindDescriptorSet(1u, allDescriptorSets_.set1[shadowPassIdx]->GetDescriptorSetHandle(), in RenderSubmeshes() 399 auto& binder1 = *allDescriptorSets_.set1[shadowPassIdx]; in UpdateSet01() 632 allDescriptorSets_.set1[idx] = descriptorSetMgr.CreateDescriptorSetBinder( in ProcessBuffersAndDescriptors()
|
H A D | render_node_default_material_deferred_shading.h | 149 RENDER_NS::IDescriptorSetBinder::Ptr set1; member
|
H A D | render_node_default_shadow_render_slot.h | 151 RENDER_NS::IDescriptorSetBinder::Ptr set1[DefaultMaterialLightingConstants::MAX_SHADOW_COUNT]; member
|
/foundation/graphic/graphic_3d/lume/LumeDotfield/src/render/ |
H A D | render_node_dotfield_render.h | 69 RENDER_NS::IDescriptorSetBinder::Ptr set1; member
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UCharacterTest.java | 2679 UnicodeSet set1, set2, set3, set4; in TestConsistency() 2703 set1=new UnicodeSet(hyphenPattern); in TestConsistency() 2706 /* remove the Katakana middle dot(s) from set1 */ in TestConsistency() 2707 set1.remove(0x30fb); in TestConsistency() 2709 showAMinusB(set1, set2, "[:Hyphen:]", "[:Dash:]", false); in TestConsistency() 2716 showAIntersectB(set3, set1, "[:Cf:]", "[:Hyphen:]", false); in TestConsistency() 2725 set1=new UnicodeSet(lowerPattern); in TestConsistency() 2729 // length=set1.getItem(set1, i, &start, &end, NULL, 0, &errorCode); in TestConsistency() 2733 start = set1 in TestConsistency() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UCharacterTest.java | 2827 UnicodeSet set1, set2, set3, set4; in TestConsistency() 2851 set1=new UnicodeSet(hyphenPattern); in TestConsistency() 2854 /* remove the Katakana middle dot(s) from set1 */ in TestConsistency() 2855 set1.remove(0x30fb); in TestConsistency() 2857 showAMinusB(set1, set2, "[:Hyphen:]", "[:Dash:]", false); in TestConsistency() 2864 showAIntersectB(set3, set1, "[:Cf:]", "[:Hyphen:]", false); in TestConsistency() 2873 set1=new UnicodeSet(lowerPattern); in TestConsistency() 2877 // length=set1.getItem(set1, i, &start, &end, NULL, 0, &errorCode); in TestConsistency() 2881 start = set1 in TestConsistency() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_peephole.cpp | 2040 Instruction *set1 = src1->getInsn(); in handleLOGOP() local 2042 if (!set0 || set0->fixed || !set1 || set1->fixed) in handleLOGOP() 2044 if (set1->op != OP_SET) { in handleLOGOP() 2046 set0 = set1; in handleLOGOP() 2047 set1 = xchg; in handleLOGOP() 2048 if (set1->op != OP_SET) in handleLOGOP() 2053 if (!prog->getTarget()->isOpSupported(redOp, set1->sType)) in handleLOGOP() 2061 set1->getDef(0)->refCount() > 1) in handleLOGOP() 2063 if (set0->getPredicate() || set1 in handleLOGOP() [all...] |
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | ICUJDKCompare.java | 384 Set set1 = getFieldSet(fields1); in compare() 388 pw.format("fields in %s: %s%n", n1, set1); in compare() 394 Set diffFields = diffFieldSets(set2, set1); in compare()
|
/third_party/openssl/test/ |
H A D | cmp_ctx_test.c | 331 #define set1 1 macro 431 * because set1 may allocate the new copy at the same location. \ 759 DEFINE_SET_GET1_STR_FN(set1, referenceValue) in DEFINE_SET_CB_TEST() 762 DEFINE_SET_GET1_STR_FN(set1, secretValue) in DEFINE_SET_CB_TEST()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
H A D | UnicodeMapTest.java | 391 UnicodeSet set1 = map1.keySet(value); in TestUnicodeMapGeneralCategory() 393 if (!TestBoilerplate.verifySetsIdentical(this, set1, set2)) { in TestUnicodeMapGeneralCategory()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
H A D | UnicodeMapTest.java | 388 UnicodeSet set1 = map1.keySet(value); in TestUnicodeMapGeneralCategory() 390 if (!TestBoilerplate.verifySetsIdentical(this, set1, set2)) { in TestUnicodeMapGeneralCategory()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Row.java | 67 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1() method in Row
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Row.java | 83 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1() method in Row
|
/third_party/python/Lib/unittest/ |
H A D | case.py | 1092 def assertSetEqual(self, set1, set2, msg=None): 1096 set1: The first set to compare. 1106 difference1 = set1.difference(set2) 1113 difference2 = set2.difference(set1)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | optional_test.cc | 669 absl::optional<Listenable> empty1, empty2, set1(absl::in_place), in TEST() 676 empty_to_set = std::move(set1); in TEST() 690 absl::optional<volatile Listenable> empty1, empty2, set1(absl::in_place), in TEST() 697 empty_to_set = std::move(set1); // move construct in TEST()
|