Home
last modified time | relevance | path

Searched refs:relation (Results 1 - 25 of 26) sorted by relevance

12

/third_party/skia/third_party/externals/spirv-tools/test/fuzz/
H A Dequivalence_relation_test.cpp48 EquivalenceRelation<uint32_t, UInt32Hash, UInt32Equals> relation; in TEST() local
49 ASSERT_TRUE(relation.GetAllKnownValues().empty()); in TEST()
52 relation.Register(element); in TEST()
56 relation.MakeEquivalent(0, element); in TEST()
57 relation.MakeEquivalent(element - 1, element + 1); in TEST()
61 relation.MakeEquivalent(80, element); in TEST()
62 relation.MakeEquivalent(element - 1, element + 1); in TEST()
65 relation.MakeEquivalent(78, 80); in TEST()
69 ASSERT_TRUE(relation.IsEquivalent(0, element)); in TEST()
70 ASSERT_TRUE(relation in TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/
H A Dequivalence_relation_test.cpp48 EquivalenceRelation<uint32_t, UInt32Hash, UInt32Equals> relation; in TEST() local
49 ASSERT_TRUE(relation.GetAllKnownValues().empty()); in TEST()
52 relation.Register(element); in TEST()
56 relation.MakeEquivalent(0, element); in TEST()
57 relation.MakeEquivalent(element - 1, element + 1); in TEST()
61 relation.MakeEquivalent(80, element); in TEST()
62 relation.MakeEquivalent(element - 1, element + 1); in TEST()
65 relation.MakeEquivalent(78, 80); in TEST()
69 ASSERT_TRUE(relation.IsEquivalent(0, element)); in TEST()
70 ASSERT_TRUE(relation in TEST()
[all...]
/third_party/spirv-tools/test/fuzz/
H A Dequivalence_relation_test.cpp48 EquivalenceRelation<uint32_t, UInt32Hash, UInt32Equals> relation; in TEST() local
49 ASSERT_TRUE(relation.GetAllKnownValues().empty()); in TEST()
52 relation.Register(element); in TEST()
56 relation.MakeEquivalent(0, element); in TEST()
57 relation.MakeEquivalent(element - 1, element + 1); in TEST()
61 relation.MakeEquivalent(80, element); in TEST()
62 relation.MakeEquivalent(element - 1, element + 1); in TEST()
65 relation.MakeEquivalent(78, 80); in TEST()
69 ASSERT_TRUE(relation.IsEquivalent(0, element)); in TEST()
70 ASSERT_TRUE(relation in TEST()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTestUtilities.java107 int relation = CollectionUtilities.getContainmentRelation(a, b); in TestCollectionUtilities()
108 resultMask |= (1 << relation); in TestCollectionUtilities()
109 switch (relation) { in TestCollectionUtilities()
111 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities()
114 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities()
117 checkContainment(a.equals(b) && a.size() != 0, a, relation, b); in TestCollectionUtilities()
120 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities()
123 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b); in TestCollectionUtilities()
126 checkContainment(!CollectionUtilities.containsSome(a, b) && a.size() != 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities()
129 checkContainment(a.containsAll(b) && !a.equals(b), a, relation, in TestCollectionUtilities()
161 checkContainment(boolean c, Collection a, int relation, Collection b) checkContainment() argument
[all...]
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
H A DTestUtilities.java104 int relation = CollectionUtilities.getContainmentRelation(a, b); in TestCollectionUtilities()
105 resultMask |= (1 << relation); in TestCollectionUtilities()
106 switch (relation) { in TestCollectionUtilities()
108 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities()
111 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities()
114 checkContainment(a.equals(b) && a.size() != 0, a, relation, b); in TestCollectionUtilities()
117 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities()
120 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b); in TestCollectionUtilities()
123 checkContainment(!CollectionUtilities.containsSome(a, b) && a.size() != 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities()
126 checkContainment(a.containsAll(b) && !a.equals(b), a, relation, in TestCollectionUtilities()
158 checkContainment(boolean c, Collection a, int relation, Collection b) checkContainment() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java138 * @param relation the relation filter, using ANY, CONTAINS, etc.
142 public static <T extends Object & Comparable<? super T>> SortedSet<? extends T> doOperation(SortedSet<T> a, int relation, SortedSet<T> b) { in doOperation() argument
145 switch (relation) { in doOperation()
179 throw new IllegalArgumentException("Relation " + relation + " out of range"); in doOperation()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DSortedSetRelation.java140 * @param relation the relation filter, using ANY, CONTAINS, etc.
144 public static <T extends Object & Comparable<? super T>> SortedSet<? extends T> doOperation(SortedSet<T> a, int relation, SortedSet<T> b) { in doOperation() argument
147 switch (relation) { in doOperation()
181 throw new IllegalArgumentException("Relation " + relation + " out of range"); in doOperation()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
H A DTestFmwk.java652 Object expected, Object actual, String relation, boolean flip) { in handleAssert()
660 relation = relation == null ? ", got " : " " + relation + " "; in handleAssert()
663 + (flip ? expected + relation + actual : expected)); in handleAssert()
669 + (flip ? relation + expected : " " + expected in handleAssert()
670 + (actual != null ? relation + actual : ""))); in handleAssert()
651 handleAssert(boolean result, String message, Object expected, Object actual, String relation, boolean flip) handleAssert() argument
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestFmwk.java627 Object expected, Object actual, String relation, boolean flip) { in handleAssert()
635 relation = relation == null ? ", got " : " " + relation + " "; in handleAssert()
638 + (flip ? expected + relation + actual : expected)); in handleAssert()
644 + (flip ? relation + expected : " " + expected in handleAssert()
645 + (actual != null ? relation + actual : ""))); in handleAssert()
626 handleAssert(boolean result, String message, Object expected, Object actual, String relation, boolean flip) handleAssert() argument
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationTest.java1105 int relation = Collation.NO_LEVEL; in parseRelationAndString()
1112 relation = Collation.PRIMARY_LEVEL; in parseRelationAndString()
1115 relation = Collation.SECONDARY_LEVEL; in parseRelationAndString()
1118 relation = Collation.TERTIARY_LEVEL; in parseRelationAndString()
1121 relation = Collation.QUATERNARY_LEVEL; in parseRelationAndString()
1124 relation = Collation.CASE_LEVEL; in parseRelationAndString()
1127 relation = Collation.IDENTICAL_LEVEL; in parseRelationAndString()
1130 relation = Collation.NO_LEVEL; in parseRelationAndString()
1135 relation = Collation.ZERO_LEVEL; in parseRelationAndString()
1143 throw new ParseException("no relation ( in parseRelationAndString()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationTest.java1108 int relation = Collation.NO_LEVEL; in parseRelationAndString()
1115 relation = Collation.PRIMARY_LEVEL; in parseRelationAndString()
1118 relation = Collation.SECONDARY_LEVEL; in parseRelationAndString()
1121 relation = Collation.TERTIARY_LEVEL; in parseRelationAndString()
1124 relation = Collation.QUATERNARY_LEVEL; in parseRelationAndString()
1127 relation = Collation.CASE_LEVEL; in parseRelationAndString()
1130 relation = Collation.IDENTICAL_LEVEL; in parseRelationAndString()
1133 relation = Collation.NO_LEVEL; in parseRelationAndString()
1138 relation = Collation.ZERO_LEVEL; in parseRelationAndString()
1146 throw new ParseException("no relation ( in parseRelationAndString()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp1026 Collation::Level relation;
1033 relation = Collation::PRIMARY_LEVEL;
1036 relation = Collation::SECONDARY_LEVEL;
1039 relation = Collation::TERTIARY_LEVEL;
1042 relation = Collation::QUATERNARY_LEVEL;
1045 relation = Collation::CASE_LEVEL;
1048 relation = Collation::IDENTICAL_LEVEL;
1051 relation = Collation::NO_LEVEL;
1056 relation = Collation::ZERO_LEVEL;
1062 errln("no relation (
[all...]
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/
H A Dittnotify_static.h199 ITT_STUBV(ITTAPI, void, relation_add_to_current, (const __itt_domain *domain, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, relation, tail), relation_add_to_current, __itt_group_structure, "%p, %lu, %p")
200 ITT_STUBV(ITTAPI, void, relation_add, (const __itt_domain *domain, __itt_id head, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, head, relation, tail), relation_add, __itt_group_structure, "%p, %p, %lu, %p")
318 ITT_STUBV(ITTAPI, void, relation_add_to_current_ex, (const __itt_domain *domain, __itt_clock_domain* clock_domain, unsigned long long timestamp, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, clock_domain, timestamp, relation, tail), relation_add_to_current_ex, __itt_group_structure, "%p, %p, %lu, %d, %lu")
319 ITT_STUBV(ITTAPI, void, relation_add_ex, (const __itt_domain *domain, __itt_clock_domain* clock_domain, unsigned long long timestamp, __itt_id head, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, clock_domain, timestamp, head, relation, tail), relation_add_ex, __itt_group_structure, "%p, %p, %lu, %lu, %d, %lu")
/third_party/node/deps/v8/third_party/ittapi/ittapi-rs/src/
H A Dittnotify_bindings.rs1722 #[doc = " @brief The kind of relation between two instances is specified by the enumerated type __itt_relation."]
1723 #[doc = " Relations between instances can be added with an API call. The relation"]
1731 #[doc = " @brief Add a relation to the current task instance."]
1732 #[doc = " The current task instance is the head of the relation."]
1734 #[doc = " @param[in] relation The kind of relation"]
1735 #[doc = " @param[in] tail The ID for the tail of the relation"]
1738 relation: __itt_relation, in __itt_relation_add_to_current()
1744 #[doc = " @brief Add a relation between two instance identifiers."]
1746 #[doc = " @param[in] head The ID for the head of the relation"]
[all...]
/third_party/node/deps/v8/third_party/ittapi/include/
H A Dittnotify.h64 needed in another API call (such as adding a relation or metadata).
2604 * @brief The kind of relation between two instances is specified by the enumerated type __itt_relation.
2605 * Relations between instances can be added with an API call. The relation
2625 * @brief Add a relation to the current task instance.
2626 * The current task instance is the head of the relation.
2628 * @param[in] relation The kind of relation
2629 * @param[in] tail The ID for the tail of the relation
2631 void ITTAPI __itt_relation_add_to_current(const __itt_domain *domain, __itt_relation relation, __itt_id tail);
2635 * @brief Add a relation betwee
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUnicodeSetTest.java2173 * Test function. Make sure that the sets have the right relation
2177 int relation = ((Integer) relationObj).intValue(); in expectRelation()
2220 // Now see if the expected relation is true in expectRelation()
2225 if (status != relation) { in expectRelation()
2226 errln("FAIL relation incorrect" + message in expectRelation()
2227 + "; desired = " + RELATION_NAME[relation] in expectRelation()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetTest.java2187 * Test function. Make sure that the sets have the right relation
2191 int relation = ((Integer) relationObj).intValue(); in expectRelation()
2234 // Now see if the expected relation is true in expectRelation()
2239 if (status != relation) { in expectRelation()
2240 errln("FAIL relation incorrect" + message in expectRelation()
2241 + "; desired = " + RELATION_NAME[relation] in expectRelation()
/third_party/icu/icu4c/source/test/cintltst/
H A Dccapitst.c3641 const char *relation, *name1, *name2; in compareNames() local
3644 relation=*names++; in compareNames()
3645 if(*relation=='=') { in compareNames()
3647 } else if(*relation=='<') { in compareNames()
/third_party/typescript/lib/
H A DtypingsInstaller.js5424 * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and
[all...]
H A Dtsc.js[all...]
H A Dtsserverlibrary.js5443 * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and
[all...]
H A Dtypescript.js5434 * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and
[all...]
H A DtypescriptServices.js5434 * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and
[all...]
H A Dtsserver.js5444 * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and
[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js5415 * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and
[all...]

Completed in 226 milliseconds

12