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

1 2

  /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...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
RelationDataItem.java 21 import android.provider.ContactsContract.CommonDataKinds.Relation;
24 * Represents a relation data item, wrapping the columns in
25 * {@link ContactsContract.CommonDataKinds.Relation}.
34 return getContentValues().getAsString(Relation.NAME);
38 return getContentValues().getAsString(Relation.LABEL);
DataItem.java 31 import android.provider.ContactsContract.CommonDataKinds.Relation;
81 } else if (Relation.CONTENT_ITEM_TYPE.equals(mimeType)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
GoogleAccountType.java 24 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...]
BaseAccountType.java 32 import android.provider.ContactsContract.CommonDataKinds.Relation;
146 return new EditType(type, Relation.getTypeLabelResource(type));
588 return Relation.getTypeLabelResource(type == null ? Relation.TYPE_CUSTOM : type);
    [all...]
  /external/chromium_org/chrome/common/
content_settings_pattern.h 34 // sets they describe, have specific relations. |Relation| describes the
35 // relation of two patterns A and B. When pattern A is compared with pattern B
57 enum Relation {
186 // |Relation| of the two patterns.
187 Relation Compare(const ContentSettingsPattern& other) const;
252 static Relation CompareScheme(
256 static Relation CompareHost(
260 static Relation ComparePort(
content_settings_pattern.cc 507 ContentSettingsPattern::Relation ContentSettingsPattern::Compare(
522 Relation host_relation = CompareHost(parts_, other.parts_);
527 Relation port_relation = ComparePort(parts_, other.parts_);
532 Relation scheme_relation = CompareScheme(parts_, other.parts_);
565 ContentSettingsPattern::Relation ContentSettingsPattern::CompareHost(
652 ContentSettingsPattern::Relation ContentSettingsPattern::CompareScheme(
669 ContentSettingsPattern::Relation ContentSettingsPattern::ComparePort(
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserValues.h 209 CSSSelector::Relation relation() const { return m_selector->relation(); }
214 void setRelation(CSSSelector::Relation value) { m_selector->m_relation = value; }
238 void insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector>, CSSSelector::Relation after);
239 void appendTagHistory(CSSSelector::Relation, PassOwnPtr<CSSParserSelector>);
250 return m_selector->relation() == CSSSelector::ShadowPseudo;
CSSParserValues.cpp 198 void CSSParserSelector::insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector> selector, CSSSelector::Relation after)
207 void CSSParserSelector::appendTagHistory(CSSSelector::Relation relation, PassOwnPtr<CSSParserSelector> selector)
212 end->setRelation(relation);
CSSSelector.h 73 enum Relation {
226 Relation relation() const { return static_cast<Relation>(m_relation); } function in class:WebCore::CSSSelector
242 unsigned m_relation : 3; // enum Relation
SelectorFilter.cpp 136 CSSSelector::Relation relation = selector->relation(); local
143 switch (relation) {
165 relation = selector->relation();
StyleInvalidationAnalysis.cpp 58 CSSSelector::Relation relation = current->relation(); local
59 if (relation != CSSSelector::Descendant && relation != CSSSelector::Child && relation != CSSSelector::SubSelector)
SelectorCheckerFastPath.cpp 47 if (selector->relation() == CSSSelector::Descendant)
50 ASSERT(selector->relation() == CSSSelector::Child || selector->relation() == CSSSelector::SubSelector);
54 if (selector->relation() != CSSSelector::SubSelector)
134 if (selector->relation() == CSSSelector::Child || selector->relation() == CSSSelector::SubSelector)
137 if (selector->relation() != CSSSelector::SubSelector)
169 static inline bool isFastCheckableRelation(CSSSelector::Relation relation)
171 return relation == CSSSelector::Descendant || relation == CSSSelector::Child || relation == CSSSelector::SubSelect (…)
    [all...]
SelectorChecker.cpp 166 CSSSelector::Relation relation = context.selector->relation(); local
177 if (relation != CSSSelector::SubSelector) {
187 if (!context.isSubSelector && (context.element->isLink() || (relation != CSSSelector::Descendant && relation != CSSSelector::Child)))
193 switch (relation) {
967 CSSSelector::Relation relation = selector->relation(); local
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
ExternalAccountTypeTest.java 26 import android.provider.ContactsContract.CommonDataKinds.Relation;
116 assertNotNull(type.getKindForMimetype(Relation.CONTENT_ITEM_TYPE));
  /packages/apps/Exchange/src/com/android/exchange/service/
EasContactsSyncHandler.java 24 import android.provider.ContactsContract.CommonDataKinds.Relation;
515 * Add a relation to the upsync.
517 * @param cv The {@link ContentValues} with the data for this relation.
522 final String value = cv.getAsString(Relation.DATA);
524 switch (cv.getAsInteger(Relation.TYPE)) {
525 case Relation.TYPE_ASSISTANT:
528 case Relation.TYPE_MANAGER:
531 case Relation.TYPE_SPOUSE:
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardExporterTests.java 34 import android.provider.ContactsContract.CommonDataKinds.Relation;
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 35 import android.provider.ContactsContract.CommonDataKinds.Relation;
603 .appendRelation(contentValuesListMap.get(Relation.CONTENT_ITEM_TYPE));
VCardBuilder.java 27 import android.provider.ContactsContract.CommonDataKinds.Relation;
65 * .appendRelation(contentValuesListMap.get(Relation.CONTENT_ITEM_TYPE));
78 Relation.CONTENT_ITEM_TYPE)));
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncParser.java 27 import android.provider.ContactsContract.CommonDataKinds.Relation;
249 ops.addRelation(entity, Relation.TYPE_ASSISTANT, getValue());
252 ops.addRelation(entity, Relation.TYPE_MANAGER, getValue());
255 ops.addRelation(entity, Relation.TYPE_SPOUSE, getValue());
    [all...]
  /libcore/luni/src/main/java/java/util/
TreeMap.java 26 import static java.util.TreeMap.Relation.*;
204 enum Relation {
213 * Returns a possibly-flipped relation for use in descending views.
217 Relation forOrder(boolean ascending) {
240 Node<K, V> created = find(key, Relation.CREATE);
251 Node<K, V> find(K key, Relation relation) {
256 if (relation == Relation.CREATE) {
285 switch (relation) {
    [all...]
  /external/chromium_org/chrome/browser/ui/website_settings/
website_settings.cc 185 ContentSettingsPattern::Relation r1 =
192 ContentSettingsPattern::Relation r2 =
  /external/chromium_org/v8/src/
jsregexp.h     [all...]
  /external/v8/src/
jsregexp.h 225 // Represents the relation of two sets.
229 // Relation is represented by a bit saying whether there are elements in
246 // Check the currently known relation of the sets (common functions only,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ant.core_3.2.200.v20100427.jar 

Completed in 432 milliseconds

1 2