HomeSort by relevance Sort by last modified time
    Searched defs:rawContacts (Results 1 - 5 of 5) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/editor/
PickRawContactLoader.java 14 import android.provider.ContactsContract.RawContacts;
33 RawContacts.ACCOUNT_NAME,
34 RawContacts.ACCOUNT_TYPE,
35 RawContacts.DATA_SET,
36 RawContacts._ID,
37 RawContacts.DISPLAY_NAME_PRIMARY,
38 RawContacts.DISPLAY_NAME_ALTERNATIVE
41 private static final String RAW_CONTACT_SELECTION = RawContacts.CONTACT_ID + "=?";
91 rawContactUri = RawContacts.CONTENT_URI;
120 result.rawContacts.add(rawContact)
    [all...]
ContactEditorFragment.java 43 import android.provider.ContactsContract.RawContacts;
142 private static final String KEY_RAW_CONTACTS = "rawContacts";
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java 32 import android.provider.ContactsContract.RawContacts;
106 int aggregationMode = RawContacts.AGGREGATION_MODE_DEFAULT;
115 if (aggregationMode == RawContacts.AGGREGATION_MODE_DEFAULT) {
124 } else if (aggregationMode == RawContacts.AGGREGATION_MODE_DISABLED) {
157 || aggregationMode == RawContacts.AGGREGATION_MODE_SUSPENDED)) {
192 final String sql = "SELECT " + RawContacts._ID + " FROM " + Tables.RAW_CONTACTS +
194 " AND " + RawContacts._ID + "=?";
402 Tables.RAW_CONTACTS + " WHERE " + RawContacts.CONTACT_ID + "=? AND " +
403 RawContacts.DELETED + "=0";
427 final String rawContacts = TextUtils.join(",", component)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 37 import android.provider.ContactsContract.RawContacts;
78 * Loads a single Contact and all it constituent RawContacts.
139 RawContacts.ACCOUNT_NAME,
140 RawContacts.ACCOUNT_TYPE,
141 RawContacts.DATA_SET,
142 RawContacts.DIRTY,
143 RawContacts.VERSION,
144 RawContacts.SOURCE_ID,
145 RawContacts.SYNC1,
146 RawContacts.SYNC2
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 37 import android.provider.ContactsContract.RawContacts;
70 /** Loads a single Contact and all it constituent RawContacts. */
154 final String accountName = json.optString(RawContacts.ACCOUNT_NAME, null);
157 final String accountType = json.getString(RawContacts.ACCOUNT_TYPE);
472 cv.put(RawContacts._ID, cursor.getLong(ContactQuery.RAW_CONTACT_ID));
662 final ImmutableList<RawContact> rawContacts = contactData.getRawContacts();
663 final int rawContactCount = rawContacts.size();
665 final RawContact rawContact = rawContacts.get(rawContactIndex);
729 final Uri uri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);
733 intent.setDataAndType(uri, RawContacts.CONTENT_ITEM_TYPE)
    [all...]

Completed in 426 milliseconds