HomeSort by relevance Sort by last modified time
    Searched full:relation (Results 26 - 50 of 1162) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/support/room/common/src/main/java/android/arch/persistence/room/
Relation.java 25 * A convenience annotation which can be used in a Pojo to automatically fetch relation entities.
38 * {@literal @}Relation(parentColumn = "id", entityColumn = "userId")
49 * The type of the field annotated with {@code Relation} must be a {@link java.util.List} or
65 * {@literal @}Relation(parentColumn = "id", entityColumn = "userId", entity = Pet.class)
76 * from the {@code entity} defined in the {@code @Relation} annotation (<i>Pet</i>).
81 * use {@link #projection()} property in the {@code Relation} annotation.
86 * {@literal @}Relation(parentColumn = "id", entityColumn = "userId", entity = Pet.class,
92 * Note that {@code @Relation} annotation can be used only in Pojo classes, an {@link Entity} class
97 * Note that the {@code @Relation} annotated field cannot be a constructor parameter, it must be
102 public @interface Relation {
    [all...]
  /external/e2fsprogs/lib/support/
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"
prof_err.c 14 N_("Profile relation not found"),
15 N_( "Attempt to add a relation to node which is not a section"),
26 N_("Syntax error in profile relation"),
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
When.java 16 /** nothing definitive is known about the relation between S and T */
  /packages/apps/Contacts/tests/src/com/android/contacts/model/dataitem/
DataItemTests.java 26 import android.provider.ContactsContract.CommonDataKinds.Relation;
327 final String customRelation1 = "custom relation 1";
328 final String customRelation2 = "custom relation 2";
330 mValues1.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
331 mValues2.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
332 mValues3.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
333 mValues4.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
335 mValues1.put(Relation.NAME, name1);
336 mValues2.put(Relation.NAME, name1);
337 mValues3.put(Relation.NAME, name1)
    [all...]
  /external/llvm/docs/
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 instruction
    [all...]
  /external/bison/src/
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/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/vo/
PublisherWithBooks.kt 20 import android.arch.persistence.room.Relation
24 @Relation(parentColumn = "publisherId", // publisher.publisherId
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/vo/
PetsToys.java 19 import android.arch.persistence.room.Relation;
26 @Relation(parentColumn = "petId", entityColumn = "mPetId")
UserIdAndPetNames.java 20 import android.arch.persistence.room.Relation;
30 @Relation(entity = Pet.class, parentColumn = "mId", entityColumn = "mUserId",
UserWithPetsAndToys.java 20 import android.arch.persistence.room.Relation;
27 @Relation(entity = Pet.class, parentColumn = "mId", entityColumn = "mUserId")
  /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/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) {
  /prebuilts/maven_repo/android/android/arch/persistence/room/common/1.0.0-alpha10/
common-1.0.0-alpha10-sources.jar 
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
dv-mutex-err.s 2 // Test mutex relation handling
dv-mutex.s 2 // Test mutex relation handling
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
Relation.kt 20 * Value object created from processing a @Relation annotation.
22 class Relation(
  /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 }};
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/cert/
CertificateTest.java 110 assertTrue("The equivalence relation should be reflexive.", tbt_cert
117 assertTrue("The equivalence relation should be symmetric.", tbt_cert_1
124 assertTrue("The equivalence relation should be transitive.", tbt_cert
  /external/clang/include/clang/Index/
IndexSymbol.h 85 // Relation roles.
95 /// Represents a relation to another symbol for a symbol occurrence.
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 75 * Adds a relation with strength and prefix | str / extension.
182 setParseError("reset not followed by a relation");
191 setParseError("reset-before strength differs from its first relation");
196 setParseError("reset-before strength followed by a stronger relation");
201 int i = ruleIndex + (result >> OFFSET_SHIFT); // skip over the relation operator
325 setParseError("adding relation failed", e);
335 setParseError("missing starred-relation string");
344 setParseError("starred-relation string is not all NFD-inert");
350 setParseError("adding relation failed", e);
360 setParseError("range without start in starred-relation string")
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 71 * Adds a relation with strength and prefix | str / extension.
178 setParseError("reset not followed by a relation");
187 setParseError("reset-before strength differs from its first relation");
192 setParseError("reset-before strength followed by a stronger relation");
197 int i = ruleIndex + (result >> OFFSET_SHIFT); // skip over the relation operator
321 setParseError("adding relation failed", e);
331 setParseError("missing starred-relation string");
340 setParseError("starred-relation string is not all NFD-inert");
346 setParseError("adding relation failed", e);
356 setParseError("range without start in starred-relation string")
    [all...]
  /external/autotest/frontend/
db_router.py 99 @param obj1: First object involved in the relation.
100 @param obj2: Second object involved in the relation.
101 @param hints: Optional arguments to determine if relation is allowed.
103 @returns False, if the relation should be prohibited,
  /external/libmtp/src/
README 0 RELATION TO LIBPTP2

Completed in 843 milliseconds

12 3 4 5 6 7 8 91011>>