/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/ |
D | TestUtilities.java | 101 int relation = CollectionUtilities.getContainmentRelation(a, b); in TestCollectionUtilities() local 102 resultMask |= (1 << relation); in TestCollectionUtilities() 103 switch (relation) { in TestCollectionUtilities() 105 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities() local 108 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities() local 111 checkContainment(a.equals(b) && a.size() != 0, a, relation, b); in TestCollectionUtilities() local 114 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities() local 117 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b); in TestCollectionUtilities() local 120 …ainment(!CollectionUtilities.containsSome(a, b) && a.size() != 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities() 123 checkContainment(a.containsAll(b) && !a.equals(b), a, relation, b); in TestCollectionUtilities() local [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | TestUtilities.java | 102 int relation = CollectionUtilities.getContainmentRelation(a, b); in TestCollectionUtilities() local 103 resultMask |= (1 << relation); in TestCollectionUtilities() 104 switch (relation) { in TestCollectionUtilities() 106 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities() local 109 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities() local 112 checkContainment(a.equals(b) && a.size() != 0, a, relation, b); in TestCollectionUtilities() local 115 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b); in TestCollectionUtilities() local 118 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b); in TestCollectionUtilities() local 121 …ainment(!CollectionUtilities.containsSome(a, b) && a.size() != 0 && b.size() != 0, a, relation, b); in TestCollectionUtilities() 124 checkContainment(a.containsAll(b) && !a.equals(b), a, relation, b); in TestCollectionUtilities() local [all …]
|
/external/bison/src/ |
D | relation.h | 33 typedef relation_nodes *relation; typedef 37 void relation_print (relation r, relation_node size, FILE *out); 44 void relation_digraph (relation r, relation_node size, bitsetv *function); 47 void relation_transpose (relation *R_arg, relation_node n);
|
D | relation.c | 30 relation_print (relation r, relation_node size, FILE *out) in relation_print() 54 static relation R; 97 relation_digraph (relation r, relation_node size, bitsetv *function) in relation_digraph() 125 relation_transpose (relation *R_arg, relation_node n) in relation_transpose() 127 relation r = *R_arg; in relation_transpose() 129 relation new_R = xnmalloc (n, sizeof *new_R); in relation_transpose() 131 relation end_R = xnmalloc (n, sizeof *end_R); in relation_transpose()
|
D | Makefile.am | 60 relation.c relation.h \
|
/external/boringssl/src/crypto/base64/ |
D | base64_test.cc | 43 enum encoding_relation relation; member 126 if (t.relation != canonical) { in TEST_P() 144 if (t.relation == valid) { in TEST_P() 158 if (t.relation == invalid) { in TEST_P() 160 } else if (t.relation == canonical) { in TEST_P() 168 if (t.relation != canonical) { in TEST_P() 196 if (t.relation == canonical) { in TEST_P() 235 switch (t.relation) { in TEST_P() 250 if (t.relation == invalid) { in TEST_P()
|
/external/iproute2/tc/ |
D | emp_ematch.y | 30 %type <i> invert relation 50 | match relation expr 52 $1->relation = $2; 82 relation:
|
D | m_ematch.c | 181 .flags = t->relation in parse_tree() 241 if (tree->relation == 0) in flatten_tree() 565 if (t->relation == TCF_EM_REL_AND) in print_ematch_tree() 567 else if (t->relation == TCF_EM_REL_OR) in print_ematch_tree()
|
/external/llvm/docs/ |
D | HowToUseInstrMappings.rst | 27 describe all the instructions using that model. TableGen parses all the relation 28 models and uses the information to construct relation tables which relate 37 // relation model. 41 // a row of the relation table. Think of this as a set of properties shared 46 // in a column of the relation table. 51 // using this relation model. 55 // each column in the relation table. These are the instructions a key 81 // row in the resulting relation table. 90 // for a relation. Key instruction is passed as an argument 91 // to the function used for querying relation tables. Column instructions [all …]
|
/external/valgrind/auxprogs/ |
D | DotToScc.hs | 114 search relation (visited, sequence) vertex 119 = deDepthFirstSearch relation 121 (relation vertex) 136 search relation (visited, utSetSequence) vertex 141 = deDepthFirstSearch relation 143 (relation vertex)
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | SortedSetRelation.java | 144 …able<? 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()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | SortedSetRelation.java | 142 …able<? 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()
|
/external/e2fsprogs/lib/support/ |
D | prof_err.et | 10 error_code PROF_NO_RELATION, "Profile relation not found" 12 "Attempt to add a relation to node which is not a section" 30 error_code PROF_RELATION_SYNTAX, "Syntax error in profile relation"
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | TestFmwk.java | 596 Object expected, Object actual, String relation, boolean flip) { in handleAssert() argument 604 relation = relation == null ? ", got " : " " + relation + " "; in handleAssert() 607 + (flip ? expected + relation + actual : expected)); in handleAssert() 613 + (flip ? relation + expected : " " + expected in handleAssert() 614 + (actual != null ? relation + actual : ""))); in handleAssert()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | TestFmwk.java | 595 Object expected, Object actual, String relation, boolean flip) { in handleAssert() argument 603 relation = relation == null ? ", got " : " " + relation + " "; in handleAssert() 606 + (flip ? expected + relation + actual : expected)); in handleAssert() 612 + (flip ? relation + expected : " " + expected in handleAssert() 613 + (actual != null ? relation + actual : ""))); in handleAssert()
|
/external/ltp/testcases/kernel/controllers/cpuset/ |
D | README | 12 hierarchy relation, inherit relation, cpuset VS syscall and so on 35 Directory containing the shell script is used to test hierarchy relation
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationTest.java | 1103 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; 1159 return relation; [all …]
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | CollationTest.java | 1102 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; 1158 return relation; [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | collationtest.cpp | 1025 Collation::Level relation; in parseRelationAndString() local 1032 relation = Collation::PRIMARY_LEVEL; in parseRelationAndString() 1035 relation = Collation::SECONDARY_LEVEL; in parseRelationAndString() 1038 relation = Collation::TERTIARY_LEVEL; in parseRelationAndString() 1041 relation = Collation::QUATERNARY_LEVEL; in parseRelationAndString() 1044 relation = Collation::CASE_LEVEL; in parseRelationAndString() 1047 relation = Collation::IDENTICAL_LEVEL; in parseRelationAndString() 1050 relation = Collation::NO_LEVEL; in parseRelationAndString() 1055 relation = Collation::ZERO_LEVEL; in parseRelationAndString() 1081 return relation; in parseRelationAndString() [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/LoopRotate/ |
D | crash.ll | 33 %struct.relation = type { [4 x i16], i32, [4 x i16], i32, i32 } 45 … %r91.0.lcssa = phi %struct.relation* [ null, %bb139 ] ; <%struct.relation*> [#uses=0]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
D | gtest-internal.h | 972 NativeArray(const Element* array, size_t count, RelationToSource relation) { 973 Init(array, count, relation); 1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1003 if (relation == kReference) { 1011 relation_to_source_ = relation;
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-internal.h | 972 NativeArray(const Element* array, size_t count, RelationToSource relation) { 973 Init(array, count, relation); 1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1003 if (relation == kReference) { 1011 relation_to_source_ = relation;
|
/external/webrtc/tools/valgrind-webrtc/gtest_exclude/ |
D | libjingle_unittest.gtest-memcheck_mac.txt | 2 # No bug is filed in relation to this since it's unlikely we can fix it.
|
/external/llvm/test/Transforms/LoopRotate/ |
D | crash.ll | 33 %struct.relation = type { [4 x i16], i32, [4 x i16], i32, i32 } 45 … %r91.0.lcssa = phi %struct.relation* [ null, %bb139 ] ; <%struct.relation*> [#uses=0]
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 1060 NativeArray(const Element* array, size_t count, RelationToSource relation) { 1061 Init(array, count, relation); 1090 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1091 if (relation == kReference) { 1099 relation_to_source_ = relation;
|