HomeSort by relevance Sort by last modified time
    Searched refs:relation (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/bison/src/
relation.h 26 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);
relation.c 27 #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);
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
Relation.java 24 * An immutable value type representing a statement relation with "kind" and "detail".
27 * field specifies which permission to delegate. A statement involving this relation does not
35 public final class Relation {
43 private Relation(String kind, String detail) {
49 * Returns the relation's kind.
57 * Returns the relation's detail.
65 * Creates a new Relation object for the specified {@code kind} and {@code detail}.
69 public static Relation create(@NonNull String kind, @NonNull String detail)
72 throw new AssociationServiceException("Relation not well formatted.");
74 return new Relation(kind, detail)
102 StringBuilder relation = new StringBuilder(); local
119 Relation relation = (Relation) o; local
    [all...]
Statement.java 22 * An immutable value type representing a statement, consisting of a source, target, and relation.
23 * This reflects an assertion that the relation holds for the source, target pair. For example, if a
28 * "relation": ["delegate_permission/common.handle_all_urls"],
38 * <pre>Relation.create("delegate_permission", "common.get_login_creds");</pre>
50 private final Relation mRelation;
53 private Statement(AbstractAsset source, AbstractAsset target, Relation relation) {
56 mRelation = relation;
76 * Returns the relation of the statement.
79 public Relation getRelation()
    [all...]
  /external/iproute2/tc/
emp_ematch.y 30 %type <i> invert relation
50 | match relation expr
52 $1->relation = $2;
82 relation: label
m_ematch.h 62 int relation; member in struct:ematch
m_ematch.c 181 .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/
TestUtilities.java 102 int relation = CollectionUtilities.getContainmentRelation(a, b); local
103 resultMask |= (1 << relation);
104 switch (relation) {
106 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b); local
109 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b); local
112 checkContainment(a.equals(b) && a.size() != 0, a, relation, b); local
115 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b); local
118 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b); local
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, b) local
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestUtilities.java 101 int relation = CollectionUtilities.getContainmentRelation(a, b); local
102 resultMask |= (1 << relation);
103 switch (relation) {
105 checkContainment(a.size() == 0 && b.size() == 0, a, relation, b); local
108 checkContainment(a.size() == 0 && b.size() != 0, a, relation, b); local
111 checkContainment(a.equals(b) && a.size() != 0, a, relation, b); local
114 checkContainment(a.size() != 0 && b.size() == 0, a, relation, b); local
117 checkContainment(b.containsAll(a) && !a.equals(b), a, relation, b); local
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, b) local
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
RelationCollector.kt 51 data class RelationCollector(val relation: Relation,
64 "_collection${relation.field.getPath().stripNonJava().capitalize()}")
73 it.field === relation.parentField
90 relation.field.setter.writeSet(itemVar, tmpCollectionVar, this)
126 fun createCollectors(baseContext : Context, relations: List<Relation>)
128 return relations.map { relation ->
130 val context = baseContext.fork(relation.field.element)
131 val parentAffinity = relation.parentField.cursorValueReader?.affinity()
132 val childAffinity = relation.entityField.cursorValueReader?.affinity(
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/writer/
RelationCollectorMethodWriter.kt 39 "fetchRelationship${collector.relation.entity.tableName.stripNonJava()}" +
40 "As${collector.relation.pojo.typeName.toString().stripNonJava()}") {
45 val relation = collector.relation
48 "-${relation.entity.typeName}" +
49 "-${relation.entityField.columnName}" +
50 "-${relation.pojo.typeName}" +
51 "-${relation.createLoadAllSql()}"
56 val relation = collector.relation
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
DirectStatementService.java 35 import com.android.statementservice.retriever.Relation;
54 * EXTRA_TARGET_ASSET_DESCRIPTOR} for {@code EXTRA_RELATION} relation.
65 * <p>A relation string.
68 "com.android.statementservice.service.RELATION";
190 String relation = extras.getString(EXTRA_RELATION); local
207 if (relation == null) {
214 new IsAssociatedCallable(sources, target, relation, resultReceiver), TAG));
228 public IsAssociatedCallable(List<String> sources, String target, String relation,
232 mRelation = relation;
237 Relation relation) throws AssociationServiceException
253 Relation relation; local
    [all...]
  /external/boringssl/src/crypto/base64/
base64_test.cc 43 enum encoding_relation relation; member in struct:TestVector
126 if (t.relation != canonical) {
144 if (t.relation == valid) {
158 if (t.relation == invalid) {
160 } else if (t.relation == canonical) {
168 if (t.relation != canonical) {
196 if (t.relation == canonical) {
235 switch (t.relation) {
250 if (t.relation == invalid) {
  /tools/tradefederation/core/src/com/android/tradefed/result/
BugreportCollector.java 48 p(Relation.AFTER, Freq.EACH, Noun.FAILED_TESTCASE);
51 p(Relation.AT_START_OF, Freq.EACH, Noun.INVOCATION);
67 public static enum Relation implements SubPredicate {
92 public Predicate(Relation rp, Freq fp, Noun n) throws IllegalArgumentException {
100 public Predicate(Relation rp, Freq fp, Noun fpN, Filter filterP, Noun filterPN)
110 public static void assertValidPredicate(Relation rp, Freq fp, Noun n)
112 if (rp == Relation.AT_START_OF) {
302 Predicate search(Relation relation, Collection<Freq> freqs, Noun noun) {
305 CLog.v("Search checking predicate %s", p(relation, freq, noun))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SortedSetRelation.java 76 throw new IllegalArgumentException("Relation " + allow + " out of range");
140 * @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) {
147 switch (relation) {
181 throw new IllegalArgumentException("Relation " + relation + " out of range");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SortedSetRelation.java 74 throw new IllegalArgumentException("Relation " + allow + " out of range");
138 * @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) {
145 switch (relation) {
179 throw new IllegalArgumentException("Relation " + relation + " out of range");
  /external/autotest/contrib/
modelviz.py 72 {% for relation in model.relations %}
73 {{ relation.target }} [label=<
77 >{{ relation.target }}</FONT></TD></TR>
80 {{ model.name }} -> {{ relation.target }}
81 [label="{{ relation.name }}"] {{ relation.arrows }};
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
prove.go 20 // relation represents the set of possible relations between
25 // relation not possible due to `v op w` being true (or false).
29 // r := relation(...)
40 type relation uint type
43 lt relation = 1 << iota
68 // fact is a pair plus a relation for that pair.
71 r relation
94 facts map[pair]relation // current known set of relation
109 ft.facts = make(map[pair]relation)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
prove.go 20 // relation represents the set of possible relations between
25 // relation not possible due to `v op w` being true (or false).
29 // r := relation(...)
40 type relation uint type
43 lt relation = 1 << iota
68 // fact is a pair plus a relation for that pair.
71 r relation
94 facts map[pair]relation // current known set of relation
109 ft.facts = make(map[pair]relation)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestFmwk.java 596 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 : "")));
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestFmwk.java 595 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 : "")));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationTest.java     [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationTest.java     [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [all...]

Completed in 1346 milliseconds

1 2 3 4