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

1 2 3 4 5 6

  /packages/apps/Contacts/src/com/android/contacts/compat/
PhoneLookupSdkCompat.java 22 public static final String CONTACT_ID = ContactsContract.PhoneLookup.CONTACT_ID;
  /packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
PhoneLookupUtil.java 32 return PhoneLookup.CONTACT_ID;
38 return (isSip) ? PhoneLookup.CONTACT_ID : ContactsContract.PhoneLookup._ID;
PhoneQuery.java 59 PhoneLookup.CONTACT_ID,
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/common/
Projections.java 34 public static final int CONTACT_ID = 9;
55 Phone.CONTACT_ID, // 9
75 Data.CONTACT_ID, // 9
94 Data.CONTACT_ID, // 9
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ContactLoaderTest.java 54 private static final long CONTACT_ID = 1;
114 final Uri baseUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, CONTACT_ID);
118 CONTACT_ID);
122 queries.fetchAllData(entityUri, CONTACT_ID, RAW_CONTACT_ID, DATA_ID, LOOKUP_KEY);
126 assertEquals(CONTACT_ID, contact.getId());
142 final Uri baseUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, CONTACT_ID);
145 CONTACT_ID);
149 queries.fetchContactIdAndLookupFromRawContactUri(rawContactUri, CONTACT_ID, LOOKUP_KEY);
150 queries.fetchAllData(entityUri, CONTACT_ID, RAW_CONTACT_ID, DATA_ID, LOOKUP_KEY);
154 assertEquals(CONTACT_ID, contact.getId())
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 97 + " SELECT " + ContactsContract.RawContacts.CONTACT_ID
124 final String sql = "select " + ContactsContract.RawContacts.CONTACT_ID + ", count(1)"
126 + " where " + ContactsContract.RawContacts.CONTACT_ID + " ="
127 + " (select " + ContactsContract.RawContacts.CONTACT_ID
130 + " group by " + ContactsContract.RawContacts.CONTACT_ID;
DeletedContactsTableUtil.java 39 ContactsContract.DeletedContacts.CONTACT_ID + " INTEGER PRIMARY KEY," +
58 values.put(ContactsContract.DeletedContacts.CONTACT_ID, contactId);
  /frameworks/opt/chips/src/com/android/ex/chips/
Queries.java 36 Phone.CONTACT_ID, // 4
56 Email.CONTACT_ID, // 4
80 public static final int CONTACT_ID = 4; // long
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/
EABContract.java 106 * Key defining the reference to ContactContract contact_id of the number.
111 public static final String CONTACT_ID = "contact_id";
244 CONTACT_ID,
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListAdapter.java 94 public static final int CONTACT_ID = 0;
114 super(context, ContactQuery.CONTACT_ID);
170 long contactId = cursor.getLong(ContactQuery.CONTACT_ID);
186 return cursor == null ? -1 : cursor.getLong(ContactQuery.CONTACT_ID);
192 final long contactId = cursor.getLong(ContactQuery.CONTACT_ID);
216 && getSelectedContactId() == cursor.getLong(ContactQuery.CONTACT_ID);
278 bindViewId(view, cursor, ContactQuery.CONTACT_ID);
326 long contactId = cursor.getLong(ContactQuery.CONTACT_ID);
382 favorites.add(cursor.getInt(ContactQuery.CONTACT_ID));
385 || favorites.contains(cursor.getInt(ContactQuery.CONTACT_ID))) {
    [all...]
MultiSelectEmailAddressesListAdapter.java 43 Email.CONTACT_ID, // 4
55 Email.CONTACT_ID, // 4
66 public static final int CONTACT_ID = 4;
104 loader.setSelection(ContactsContract.Data.CONTACT_ID
150 final long currentContactId = cursor.getLong(EmailQuery.CONTACT_ID);
152 final long previousContactId = cursor.getLong(EmailQuery.CONTACT_ID);
MultiSelectPhoneNumbersListAdapter.java 43 Phone.CONTACT_ID, // 4
55 Phone.CONTACT_ID, // 4
66 public static final int CONTACT_ID = 4;
104 loader.setSelection(ContactsContract.Data.CONTACT_ID
150 final long currentContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
152 final long previousContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
  /packages/apps/Dialer/java/com/android/contacts/common/
ContactTileLoaderFactory.java 36 * strequent items, use Phone.contact_id instead.
51 Phone.CONTACT_ID,
  /packages/apps/Contacts/src/com/android/contacts/
ContactTileLoaderFactory.java 33 public final static int CONTACT_ID = 0;
49 // contact id for strequent items, we thus have to use Phone.contact_id instead.
81 Phone.CONTACT_ID, //.......................................10
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMembersAdapter.java 41 Data.CONTACT_ID,
51 Data.CONTACT_ID,
60 public static final int CONTACT_ID = 0;
74 super(context, GroupMembersQuery.CONTACT_ID);
87 final long contactId = cursor.getLong(GroupMembersQuery.CONTACT_ID);
95 return cursor.getLong(GroupMembersQuery.CONTACT_ID);
  /packages/apps/Dialer/java/com/android/dialer/database/
DialerDatabaseHelper.java 121 + SmartDialDbColumns.CONTACT_ID
155 + PrefixColumns.CONTACT_ID
380 "contact_id column null. Row was deleted during iteration, skipping");
387 Selection.column(SmartDialDbColumns.CONTACT_ID).is("=", deleteContactId);
394 Selection.column(PrefixColumns.CONTACT_ID).is("=", deleteContactId);
430 PrefixColumns.CONTACT_ID
433 + SmartDialDbColumns.CONTACT_ID
463 "contact_id column null. Row was deleted during iteration, skipping");
469 db.delete(Tables.SMARTDIAL_TABLE, SmartDialDbColumns.CONTACT_ID + "=" + contactId, null);
470 db.delete(Tables.PREFIX_TABLE, PrefixColumns.CONTACT_ID + "=" + contactId, null)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 128 " WHERE " + RawContacts.CONTACT_ID + "=?" +
230 mContactUpdate.bindLong(ContactReplaceSqlStatement.CONTACT_ID, contactId);
262 Tables.RAW_CONTACTS + " WHERE " + RawContacts.CONTACT_ID + "=?1)) AS a" +
291 " WHERE " + RawContacts.CONTACT_ID + "=?1)" +
532 "raw_contacts1." + RawContacts.CONTACT_ID,
534 "raw_contacts2." + RawContacts.CONTACT_ID,
649 mSb.append(RawContacts.CONTACT_ID).append(" IN (");
    [all...]
ContactAggregator2.java 402 Tables.RAW_CONTACTS + " WHERE " + RawContacts.CONTACT_ID + "=? AND " +
561 mSelectionArgs2, RawContacts.CONTACT_ID, null, null);
568 final long contactId = c.getLong(IdentityLookupMatchQuery.CONTACT_ID);
592 long contactId = c.getLong(NameLookupMatchQuery.CONTACT_ID);
622 long contactId = c.getLong(EmailLookupQuery.CONTACT_ID);
650 long contactId = c.getLong(NameLookupMatchQueryWithParameter.CONTACT_ID);
    [all...]
AbstractContactAggregator.java 115 " WHERE " + RawContacts.CONTACT_ID + "=?" +
290 + AggregatedPresenceColumns.CONTACT_ID + ", "
293 + " SELECT " + PresenceColumns.CONTACT_ID + ","
304 + " WHERE " + PresenceColumns.CONTACT_ID
306 + " AND " + PresenceColumns.CONTACT_ID
313 " WHERE " + RawContacts.CONTACT_ID + "=?"
318 " WHERE " + AggregatedPresenceColumns.CONTACT_ID + "=?");
344 + RawContacts.CONTACT_ID + "=" + ContactsColumns.CONCRETE_ID + " AND "
350 + " WHERE " + RawContacts.CONTACT_ID + "=" + ContactsColumns.CONCRETE_ID + " AND "
353 + RawContacts.CONTACT_ID + "=" + ContactsColumns.CONCRETE_I
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
Cp2Contact.java 97 .setPhoneId(cursor.getLong(Projections.CONTACT_ID))
106 .setContactId(cursor.getInt(Projections.CONTACT_ID))
124 row[Projections.CONTACT_ID] = contactId();
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_PhoneLookup.java 146 expected.put(PhoneLookup.CONTACT_ID, ids[0].contactId);
163 expected.put(PhoneLookup.CONTACT_ID, ids[1].contactId);
178 expected.put(PhoneLookup.CONTACT_ID, ids[2].contactId);
206 expected.put(PhoneLookup.CONTACT_ID, ids[0].contactId);
223 expected.put(PhoneLookup.CONTACT_ID, ids[1].contactId);
239 expected.put(PhoneLookup.CONTACT_ID, ids[2].contactId);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ChangedContacts.java 172 ContactsContract.Data.CONTACT_ID,
183 + " desc, " + ContactsContract.Data.CONTACT_ID + " desc");
188 ContactsContract.DeletedContacts.CONTACT_ID,
268 return super.getColumnIndex(ContactsContract.DeletedContacts.CONTACT_ID);
295 ContactsContract.DeletedContacts.CONTACT_ID));
326 String id = cursor.getString(cursor.getColumnIndex(ContactsContract.Data.CONTACT_ID));
  /packages/apps/Dialer/java/com/android/dialer/phonelookup/cp2/
Cp2Projections.java 43 Phone.CONTACT_ID, // 7
57 PhoneLookup.CONTACT_ID, // 7
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java 62 Data.CONTACT_ID,
302 sb.append(RawContacts.CONTACT_ID + " IN (");
315 sb.append(RawContacts.CONTACT_ID + " IN " +
316 "(SELECT " + RawContacts.CONTACT_ID + " FROM " + Tables.RAW_CONTACTS +
330 SearchIndexColumns.CONTACT_ID + " IN (SELECT " +
331 RawContacts.CONTACT_ID +
347 mSb.append(Data.CONTACT_ID + ", ");
402 mValues.put(SearchIndexColumns.CONTACT_ID, contactId);
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk5.java 77 Phone.CONTACT_ID + "=" + contactId, null, Phone.IS_SUPER_PRIMARY + " DESC");

Completed in 552 milliseconds

1 2 3 4 5 6