HomeSort by relevance Sort by last modified time
    Searched full:superprimary (Results 1 - 6 of 6) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DataItem.java 125 Integer superPrimary = mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
126 return superPrimary != null && superPrimary != 0;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 114 final Integer superPrimary = values.getAsInteger(Data.IS_SUPER_PRIMARY);
115 if ((primary != null && primary != 0) || (superPrimary != null && superPrimary != 0)) {
121 if (superPrimary != null) {
122 if (superPrimary != 0) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 404 int superprimary = mDataCursor.getInt(DataQuery.IS_SUPERPRIMARY); local
406 && (superprimary != 0 || suggestion.phoneNumber == null)) {
411 int superprimary = mDataCursor.getInt(DataQuery.IS_SUPERPRIMARY); local
413 && (superprimary != 0 || suggestion.emailAddress == null)) {
PhotoEditorView.java 163 public void setSuperPrimary(boolean superPrimary) {
164 mEntry.put(Photo.IS_SUPER_PRIMARY, superPrimary ? 1 : 0);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 269 boolean superPrimary) {
270 return insertEmail(rawContactId, email, primary, superPrimary, Email.TYPE_HOME, null);
279 boolean superPrimary, int type, String label) {
289 if (superPrimary) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java     [all...]

Completed in 290 milliseconds