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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_CommonDataKinds_RelationTest.java 20 import android.provider.ContactsContract.CommonDataKinds.Relation;
34 assertGetTypeLabel(Relation.TYPE_ASSISTANT);
35 assertGetTypeLabel(Relation.TYPE_BROTHER);
36 assertGetTypeLabel(Relation.TYPE_CHILD);
37 assertGetTypeLabel(Relation.TYPE_DOMESTIC_PARTNER);
38 assertGetTypeLabel(Relation.TYPE_FATHER);
39 assertGetTypeLabel(Relation.TYPE_FRIEND);
40 assertGetTypeLabel(Relation.TYPE_MANAGER);
41 assertGetTypeLabel(Relation.TYPE_MOTHER);
42 assertGetTypeLabel(Relation.TYPE_PARENT)
    [all...]
  /external/bluetooth/glib/tests/
relation-test.c 66 GRelation *relation; local
71 relation = g_relation_new (2);
73 g_relation_index (relation, 0, g_int_hash, g_int_equal);
74 g_relation_index (relation, 1, g_int_hash, g_int_equal);
81 g_relation_insert (relation, data + i, data + i + 1);
82 g_relation_insert (relation, data + i, data + i - 1);
87 g_assert (! g_relation_exists (relation, data + i, data + i));
88 g_assert (! g_relation_exists (relation, data + i, data + i + 2));
89 g_assert (! g_relation_exists (relation, data + i, data + i - 2));
94 g_assert (g_relation_exists (relation, data + i, data + i + 1))
    [all...]
testglib.c 1067 GRelation *relation = g_relation_new (2); local
1072 g_relation_index (relation, 0, g_int_hash, g_int_equal);
1073 g_relation_index (relation, 1, g_int_hash, g_int_equal);
1080 g_relation_insert (relation, data + i, data + i + 1);
1081 g_relation_insert (relation, data + i, data + i - 1);
1086 g_assert (! g_relation_exists (relation, data + i, data + i));
1087 g_assert (! g_relation_exists (relation, data + i, data + i + 2));
1088 g_assert (! g_relation_exists (relation, data + i, data + i - 2));
1093 g_assert (g_relation_exists (relation, data + i, data + i + 1));
1094 g_assert (g_relation_exists (relation, data + i, data + i - 1))
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
GoogleAccountType.java 29 import android.provider.ContactsContract.CommonDataKinds.Relation;
118 DataKind kind = addKind(new DataKind(Relation.CONTENT_ITEM_TYPE,
121 kind.actionBody = new SimpleInflater(Relation.NAME);
123 kind.typeColumn = Relation.TYPE;
125 kind.typeList.add(buildRelationType(Relation.TYPE_ASSISTANT));
126 kind.typeList.add(buildRelationType(Relation.TYPE_BROTHER));
127 kind.typeList.add(buildRelationType(Relation.TYPE_CHILD));
128 kind.typeList.add(buildRelationType(Relation.TYPE_DOMESTIC_PARTNER));
129 kind.typeList.add(buildRelationType(Relation.TYPE_FATHER));
130 kind.typeList.add(buildRelationType(Relation.TYPE_FRIEND))
    [all...]
  /external/bluetooth/glib/glib/
grel.h 52 * g_relation_new() creates a relation with FIELDS fields
57 * g_relation_index() indexes relation FIELD with the provided
70 void g_relation_destroy (GRelation *relation);
71 void g_relation_index (GRelation *relation,
75 void g_relation_insert (GRelation *relation,
77 gint g_relation_delete (GRelation *relation,
80 GTuples* g_relation_select (GRelation *relation,
83 gint g_relation_count (GRelation *relation,
86 gboolean g_relation_exists (GRelation *relation,
88 void g_relation_print (GRelation *relation);
    [all...]
  /external/bison/src/
relation.h 27 If GRAPH is a relation, then GRAPH[Node] is a list of adjacent
34 typedef relation_nodes *relation; typedef
37 /* Report a relation R that has SIZE vertices. */
38 void relation_print (relation r, relation_node size, FILE *out);
40 /* Compute the transitive closure of the FUNCTION on the relation R
45 void relation_digraph (relation r, relation_node size, bitsetv *function);
48 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);
  /external/iproute2/tc/
emp_ematch.y 30 %type <i> invert relation
50 | match relation expr
52 $1->relation = $2;
82 relation: label
  /external/e2fsprogs/misc/
mke2fs.conf.5.in 20 defines a relation, which assigns tags to values, or to a subsection,
88 This relation specifies the filesystems features which are enabled in
91 relation found in the filesystem or usage type subsection of
97 This relation specifies a set of features that should be added or
100 relation. It may be overridden by the filesystem-specific
111 This relation, if set to a boolean value of true, forces
118 This relation specifies the default filesystem type if the user does not
135 This relation specifies the default blocksize if the user does not
140 This relation specifies the default hash algorithm used for the
149 This relation specifies the default inode ratio if the user does no
    [all...]
  /external/e2fsprogs/e2fsck/
e2fsck.conf.5.in 20 defines a relation, which assigns tags to values, or to a subsection,
85 If this relation is set to a boolean value of true, then if the user
126 This boolean relation controls whether or not
133 This boolean relation controls whether or not the interval between
145 higher, more efficient level. This relation defaults to 20
164 This relation allows the message which is printed when this filesystem
168 This boolean relation overrides the default behavior controlling
174 This boolean relation overrides the default behavior determining
179 This boolean relation overrides whether the default answer for this
183 This boolean relation overrides the default behavior controlling
    [all...]
prof_err.c 12 "Profile relation not found",
13 "Attempt to add a relation to node which is not a section",
24 "Syntax error in profile relation",
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/icu4c/test/intltest/
dadrcoll.cpp 107 el.relation = Collator::LESS;
111 el.relation = Collator::EQUAL;
115 el.relation = Collator::GREATER;
262 Collator::EComparisonResult relation = Collator::EQUAL; local
276 relation = Collator::EQUAL;
281 if(relation == Collator::EQUAL && source->relation != Collator::EQUAL) {
282 relation = source->relation;
284 doTest(col, source->source, target->source, relation);
    [all...]
rndmcoll.cpp 23 // relation "[variable top]"
24 // relation (chars "|")? chars ("/" chars)?
25 // plus, a reset must come before a relation
67 "$relation = $relationList $s ($rel1 | $rel2) $crlf;"
70 "$mostRules = $command 1% | $reset 5% | $relation 25%;"
dadrcoll.h 33 Collator::EComparisonResult relation; member in class:SeqElement
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
When.java 16 /** nothing definitive is known about the relation between S and T */
  /external/bluetooth/glib/docs/reference/glib/tmpl/
relations.sgml 65 <link linkend="glib-Relations-and-Tuples">Relation</link>.
86 @relation: a #GRelation.
97 @relation: a #GRelation.
109 @relation: a #GRelation.
121 @relation: a #GRelation.
134 @relation: a #GRelation.
146 @relation: a #GRelation.
159 @relation: a #GRelation.
168 @relation: a #GRelation.
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.provider.ContactsContract.CommonDataKinds.Relation.html 10 android.provider.ContactsContract.CommonDataKinds.Relation
74 Class android.provider.<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Relation</code></font></A>
86 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)"></A>
87 <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#getTypeLabel(android.content.res.Resources, int, java.lang.CharSequence)" target="_top"><code>getTypeLabel</code></A>(<code>Resources,</nobr> int<nobr>,</nobr> CharSequence<nobr><nobr></code>)</nobr>
93 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.getTypeLabelResource_added(int)"></A>
94 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#getTypeLabelResource(int)" target="_top"><code>getTypeLabelResource</code></A>(<code>int</code>)</nobr>
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRLEntryTest.java 115 assertTrue("The equivalence relation should be reflexive.",
121 assertTrue("The equivalence relation should be symmetric.",
127 assertTrue("The equivalence relation should be transitive.",
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
CertificateTest.java 104 assertTrue("The equivalence relation should be reflexive.",
110 assertTrue("The equivalence relation should be symmetric.",
116 assertTrue("The equivalence relation should be transitive.",
  /libcore/luni/src/test/java/tests/api/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
  /bionic/libm/man/
math.3 157 isgreater greater than relation
158 isgreaterequal greater than or equal to relation
159 isless less than relation
160 islessequal less than or equal to relation
161 islessgreater less than or greater than relation
162 isunordered unordered relation
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.5-1.js 61 not NaN; (b) when considered as a relation, where the pair (x, y) is
62 considered to be in the relation if and only if applying the function
64 negative value, this relation is a partial order; and (c) when
65 considered as a different relation, where the pair (x, y) is considered
66 to be in the relation if and only if applying the function to x and y
68 sign), this relation is an equivalence relation. In this context, the
15.4.4.5-2.js 62 not NaN; (b) when considered as a relation, where the pair (x, y) is
63 considered to be in the relation if and only if applying the function
65 negative value, this relation is a partial order; and (c) when
66 considered as a different relation, where the pair (x, y) is considered
67 to be in the relation if and only if applying the function to x and y
69 sign), this relation is an equivalence relation. In this context, the
  /external/webkit/Source/WebCore/css/
CSSSelector.h 106 enum Relation {
259 Relation relation() const { return static_cast<Relation>(m_relation); } function in class:WebCore::CSSSelector
271 unsigned m_relation : 3; // enum Relation

Completed in 1775 milliseconds

1 2 3 4 5 6 7 8 91011>>