Home
last modified time | relevance | path

Searched refs:superPrimary (Results 1 – 6 of 6) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDataRowHandler.java114 final Integer superPrimary = values.getAsInteger(Data.IS_SUPER_PRIMARY); in insert() local
115 if ((primary != null && primary != 0) || (superPrimary != null && superPrimary != 0)) { in insert()
121 if (superPrimary != null) { in insert()
122 if (superPrimary != 0) { in insert()
/packages/apps/Contacts/src/com/android/contacts/editor/
DPhotoEditorView.java163 public void setSuperPrimary(boolean superPrimary) { in setSuperPrimary() argument
164 mEntry.put(Photo.IS_SUPER_PRIMARY, superPrimary ? 1 : 0); in setSuperPrimary()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DDataAction.java99 final Integer superPrimary = entryValues.getAsInteger(Data.IS_SUPER_PRIMARY); in DataAction() local
100 mIsPrimary = superPrimary != null && superPrimary != 0; in DataAction()
DQuickContactActivity.java366 final Integer superPrimary = entryValues.getAsInteger(Data.IS_SUPER_PRIMARY); in bindData() local
367 final boolean isSuperPrimary = superPrimary != null && superPrimary != 0; in bindData()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java1897 boolean superPrimary = c.getInt(RawContactsQuery.IS_SUPER_PRIMARY) != 0; in computeAggregateData()
1906 if (superPrimary || hasHigherPhotoPriority( in computeAggregateData()
1912 foundSuperPrimaryPhoto |= superPrimary; in computeAggregateData()
2051 boolean superPrimary = c.getInt(PhotoIdQuery.IS_SUPER_PRIMARY) != 0; in updatePhotoId()
2058 if (superPrimary || hasHigherPhotoPriority( in updatePhotoId()
2064 if (superPrimary) { in updatePhotoId()
/packages/apps/Contacts/src/com/android/contacts/detail/
DContactDetailFragment.java584 Integer superPrimary = entryValues.getAsInteger(Data.IS_SUPER_PRIMARY); in buildEntries() local
585 final boolean isSuperPrimary = superPrimary != null && superPrimary != 0; in buildEntries()