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

12

/external/bison/src/
H A Drelation.h26 If GRAPH is a relation, then GRAPH[Node] is a list of adjacent
33 typedef relation_nodes *relation; typedef
36 /* Report a relation R that has SIZE vertices. */
37 void relation_print (relation r, relation_node size, FILE *out);
39 /* Compute the transitive closure of the FUNCTION on the relation R
44 void relation_digraph (relation r, relation_node size, bitsetv *function);
47 void relation_transpose (relation *R_arg, relation_node n);
H A Drelation.c27 #include "relation.h"
30 relation_print (relation r, relation_node size, FILE *out)
54 static relation R;
97 relation_digraph (relation r, relation_node size, bitsetv *function)
125 relation_transpose (relation *R_arg, relation_node n)
127 relation r = *R_arg;
129 relation new_R = xnmalloc (n, sizeof *new_R);
131 relation end_R = xnmalloc (n, sizeof *end_R);
/external/iproute2/tc/
H A Demp_ematch.y30 %type <i> invert relation
50 | match relation expr
52 $1->relation = $2;
82 relation: label
H A Dm_ematch.h62 int relation; member in struct:ematch
H A Dm_ematch.c181 .flags = t->relation
241 if (tree->relation == 0)
565 if (t->relation == TCF_EM_REL_AND)
567 else if (t->relation == TCF_EM_REL_OR)
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DTestUtilities.java102 int relation = CollectionUtilities.getContainmentRelation(a, b);
103 resultMask |= (1 << relation);
104 switch (relation) {
106 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b);
109 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b);
112 checkContainment(a.equals(b) && a.size() != 0, a, relation, b);
115 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b);
118 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b);
121 checkContainment(!CollectionUtilities.containsSome(a, b) && a.size() != 0 && b.size() != 0, a, relation, b);
124 checkContainment(a.containsAll(b) && !a.equals(b), a, relation,
156 checkContainment(boolean c, Collection a, int relation, Collection b) argument
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
H A DTestUtilities.java101 int relation = CollectionUtilities.getContainmentRelation(a, b);
102 resultMask |= (1 << relation);
103 switch (relation) {
105 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b);
108 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b);
111 checkContainment(a.equals(b) && a.size() != 0, a, relation, b);
114 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b);
117 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b);
120 checkContainment(!CollectionUtilities.containsSome(a, b) && a.size() != 0 && b.size() != 0, a, relation, b);
123 checkContainment(a.containsAll(b) && !a.equals(b), a, relation,
155 checkContainment(boolean c, Collection a, int relation, Collection b) argument
[all...]
/external/boringssl/src/crypto/base64/
H A Dbase64_test.cc40 enum encoding_relation relation; member in struct:TestVector
122 if (t->relation != canonical) {
155 if (t->relation == valid) {
168 if (t->relation == invalid) {
174 } else if (t->relation == canonical) {
195 if (t->relation != canonical) {
237 if (t->relation == canonical) {
284 switch (t->relation) {
314 if (t->relation == invalid) {
/external/icu/android_icu4j/src/main/java/android/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) { argument
147 switch (relation) {
181 throw new IllegalArgumentException("Relation " + relation + " out of range");
/external/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) { argument
145 switch (relation) {
179 throw new IllegalArgumentException("Relation " + relation + " out of range");
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestFmwk.java596 Object expected, Object actual, String relation, boolean flip) {
604 relation = relation == null ? ", got " : " " + relation + " ";
607 + (flip ? expected + relation + actual : expected));
613 + (flip ? relation + expected : " " + expected
614 + (actual != null ? relation + actual : "")));
595 handleAssert(boolean result, String message, Object expected, Object actual, String relation, boolean flip) argument
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestFmwk.java595 Object expected, Object actual, String relation, boolean flip) {
603 relation = relation == null ? ", got " : " " + relation + " ";
606 + (flip ? expected + relation + actual : expected));
612 + (flip ? relation + expected : " " + expected
613 + (actual != null ? relation + actual : "")));
594 handleAssert(boolean result, String message, Object expected, Object actual, String relation, boolean flip) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationTest.java1103 int relation = Collation.NO_LEVEL;
1110 relation = Collation.PRIMARY_LEVEL;
1113 relation = Collation.SECONDARY_LEVEL;
1116 relation = Collation.TERTIARY_LEVEL;
1119 relation = Collation.QUATERNARY_LEVEL;
1122 relation = Collation.CASE_LEVEL;
1125 relation = Collation.IDENTICAL_LEVEL;
1128 relation = Collation.NO_LEVEL;
1133 relation = Collation.ZERO_LEVEL;
1141 throw new ParseException("no relation (
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationTest.java1102 int relation = Collation.NO_LEVEL;
1109 relation = Collation.PRIMARY_LEVEL;
1112 relation = Collation.SECONDARY_LEVEL;
1115 relation = Collation.TERTIARY_LEVEL;
1118 relation = Collation.QUATERNARY_LEVEL;
1121 relation = Collation.CASE_LEVEL;
1124 relation = Collation.IDENTICAL_LEVEL;
1127 relation = Collation.NO_LEVEL;
1132 relation = Collation.ZERO_LEVEL;
1140 throw new ParseException("no relation (
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h947 // The relation between an NativeArray object (see below) and the
972 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
973 Init(array, count, relation);
1001 // 'relation' is kCopy.
1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1003 if (relation == kReference) {
1011 relation_to_source_ = relation;
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp1025 Collation::Level relation;
1032 relation = Collation::PRIMARY_LEVEL;
1035 relation = Collation::SECONDARY_LEVEL;
1038 relation = Collation::TERTIARY_LEVEL;
1041 relation = Collation::QUATERNARY_LEVEL;
1044 relation = Collation::CASE_LEVEL;
1047 relation = Collation::IDENTICAL_LEVEL;
1050 relation = Collation::NO_LEVEL;
1055 relation = Collation::ZERO_LEVEL;
1061 errln("no relation (
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h1021 // The relation between an NativeArray object (see below) and the
1046 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
1047 Init(array, count, relation);
1075 // 'relation' is kCopy.
1076 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1077 if (relation == kReference) {
1085 relation_to_source_ = relation;
/external/llvm/utils/llvm-build/llvmbuild/
H A Dmain.py143 '%r (%s)' % (ci.name, relation)
144 for relation,ci in current_stack)
163 for relation,referent_name in ci.get_component_references():
168 ci.name, referent_name, relation))
171 current_stack.append((relation,ci))
182 # about only checking cycles by relation type. If we do that, it falls
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1044 // The relation between an NativeArray object (see below) and the
1069 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
1070 Init(array, count, relation);
1098 // 'relation' is kCopy.
1099 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1100 if (relation == kReference) {
1108 relation_to_source_ = relation;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h1015 // The relation between an NativeArray object (see below) and the
1040 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
1041 Init(array, count, relation);
1069 // 'relation' is kCopy.
1070 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1071 if (relation == kReference) {
1079 relation_to_source_ = relation;
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1035 // The relation between an NativeArray object (see below) and the
1060 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
1061 Init(array, count, relation);
1089 // 'relation' is kCopy.
1090 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1091 if (relation == kReference) {
1099 relation_to_source_ = relation;
/external/bison/
H A DAndroid.mk178 src/relation.c \
/external/valgrind/VEX/priv/
H A Dir_opt.c3240 /* Produces the alias relation between an indexed guest
3262 /* Produces the alias relation between two indexed guest state
3289 relation will be. Now, since the IR is flattened, the index
4222 GSAliasing relation; local
4245 relation
4251 if (relation == NoAlias) {
4255 /* relation == UnknownAlias || relation == ExactAlias */
4259 vassert(relation != ExactAlias);
4269 relation
4342 GSAliasing relation; local
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h749 name, op, relation, negated_relation) \
767 *os << relation " "; \
1161 #define GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(name, op, relation) \
1182 *os << "are " relation; \
1185 *os << "aren't " relation; \
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUnicodeSetTest.java2163 * Test function. Make sure that the sets have the right relation
2167 int relation = ((Integer) relationObj).intValue();
2210 // Now see if the expected relation is true
2215 if (status != relation) {
2216 errln("FAIL relation incorrect" + message
2217 + "; desired = " + RELATION_NAME[relation]

Completed in 897 milliseconds

12