HomeSort by relevance Sort by last modified time
    Searched full:relation (Results 1 - 25 of 782) 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/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);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
RelationDataItem.java 22 import android.provider.ContactsContract.CommonDataKinds.Relation;
26 * Represents a relation data item, wrapping the columns in
27 * {@link ContactsContract.CommonDataKinds.Relation}.
36 return getContentValues().getAsString(Relation.NAME);
40 return getContentValues().getAsString(Relation.LABEL);
56 } else if (getKindTypeColumn(mKind) == Relation.TYPE_CUSTOM &&
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
GoogleAccountType.java 24 import android.provider.ContactsContract.CommonDataKinds.Relation;
124 DataKind kind = addKind(new DataKind(Relation.CONTENT_ITEM_TYPE,
127 kind.actionBody = new SimpleInflater(Relation.NAME);
129 kind.typeColumn = Relation.TYPE;
131 kind.typeList.add(buildRelationType(Relation.TYPE_ASSISTANT));
132 kind.typeList.add(buildRelationType(Relation.TYPE_BROTHER));
133 kind.typeList.add(buildRelationType(Relation.TYPE_CHILD));
134 kind.typeList.add(buildRelationType(Relation.TYPE_DOMESTIC_PARTNER));
135 kind.typeList.add(buildRelationType(Relation.TYPE_FATHER));
136 kind.typeList.add(buildRelationType(Relation.TYPE_FRIEND))
    [all...]
  /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,
93 This relation specifies the filesystems features which are enabled in
96 relation found in the filesystem or usage type subsection of
102 This relation specifies a set of features that should be added or
105 relation. It may be overridden by the filesystem-specific
116 This boolean relation specifies whether periodic filesystem checks should be
127 This boolean relation, if set to a value of true, forces
134 This relation specifies the default filesystem type if the user does not
151 This relation specifies the default blocksize if the user does not
156 This relation specifies the default hash algorithm used for th
    [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
127 This boolean relation is an alias for
135 we changed the default, we also renamed this boolean relation to
139 This boolean relation controls whether or not
146 This boolean relation controls whether or not the interval between
158 higher, more efficient level. This relation defaults to 20
164 relation contains a relative pathname, then the log file will be placed
167 relation.
170 This relation contains an alternate directory that will be used if th
    [all...]
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/chromium_org/third_party/icu/source/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%;"
  /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/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/
DataItemTests.java 26 import android.provider.ContactsContract.CommonDataKinds.Relation;
328 final String customRelation1 = "custom relation 1";
329 final String customRelation2 = "custom relation 2";
331 mValues1.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
332 mValues2.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
333 mValues3.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
334 mValues4.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE);
336 mValues1.put(Relation.NAME, name1);
337 mValues2.put(Relation.NAME, name1);
338 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/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.cpp 123 void CSSParserSelector::insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector> selector, CSSSelector::Relation after)
132 void CSSParserSelector::appendTagHistory(CSSSelector::Relation relation, PassOwnPtr<CSSParserSelector> selector)
137 end->setRelation(relation);
CSSParserValues.h 220 CSSSelector::Relation relation() const { return m_selector->relation(); }
225 void setRelation(CSSSelector::Relation value) { m_selector->setRelation(value); }
245 void insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector>, CSSSelector::Relation after);
246 void appendTagHistory(CSSSelector::Relation, PassOwnPtr<CSSParserSelector>);
256 return m_selector->relation() == CSSSelector::ShadowPseudo;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.h 38 // ** tagHistory() and relation():
42 // simple selector in the list. The relation() method returns the relationship of the current simple selector to
46 // --> (relation == Descendant)
48 // --> (relation == SubSelector)
51 // Note that currently a bare selector such as ".a" has a relation() of Descendant. This is a bug - instead the relation should be
61 // --> (relation == ShadowPseudo)
126 enum Relation {
299 // FIXME: selectors with no tagHistory() get a relation() of Descendant (and sometimes even SubSelector). It should instead be
301 Relation relation() const { return static_cast<Relation>(m_relation); function in class:blink::CSSSelector
    [all...]
SelectorFilter.cpp 135 CSSSelector::Relation relation = selector.relation(); local
142 switch (relation) {
167 relation = current->relation();
  /frameworks/base/docs/html/sdk/api_diff/21/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>
87 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
94 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
101 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
  /frameworks/base/docs/html/sdk/api_diff/preview-21/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>
87 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
94 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
101 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
  /external/chromium_org/components/content_settings/core/common/
content_settings_pattern.h 25 // sets they describe, have specific relations. |Relation| describes the
26 // relation of two patterns A and B. When pattern A is compared with pattern B
48 enum Relation {
173 // |Relation| of the two patterns.
174 Relation Compare(const ContentSettingsPattern& other) const;
195 static Relation CompareScheme(
199 static Relation CompareHost(
203 static Relation ComparePort(
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 58 CSSSelector::Relation relation = current->relation(); local
61 if (relation == CSSSelector::ShadowDeep || relation == CSSSelector::ShadowPseudo)
63 if (relation != CSSSelector::Descendant && relation != CSSSelector::Child && relation != CSSSelector::SubSelector)
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_tree_test.unitjs 98 '<relation>=</relation>');
102 '<content><relation>=</relation></content>' +
111 '<content><relation>=</relation><relation>=</relation></content>' +
122 '<content><relation>=</relation><relation>=</relation>'
    [all...]
  /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>

Completed in 1231 milliseconds

1 2 3 4 5 6 7 8 91011>>