Searched refs:CONTACT_ID (Results 1 - 25 of 54) sorted by relevance

123

/packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
H A DContactsTableUtil.java97 + " 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;
H A DDeletedContactsTableUtil.java39 ContactsContract.DeletedContacts.CONTACT_ID + " INTEGER PRIMARY KEY," +
58 values.put(ContactsContract.DeletedContacts.CONTACT_ID, contactId);
/packages/apps/Contacts/src/com/android/contacts/
H A DGroupMemberLoader.java39 Data.CONTACT_ID, // 0
46 public static final int CONTACT_ID = 0; field in class:GroupMemberLoader.GroupEditorQuery
55 Data.CONTACT_ID, // 0
63 public static final int CONTACT_ID = 0; field in class:GroupMemberLoader.GroupDetailQuery
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactTileLoaderFactory.java31 public final static int CONTACT_ID = 0; field in class:ContactTileLoaderFactory
77 Phone.CONTACT_ID //........................................10
/packages/apps/Dialer/src/com/android/dialer/database/
H A DDialerDatabaseHelper.java99 static final String CONTACT_ID = "contact_id"; field in interface:DialerDatabaseHelper.SmartDialDbColumns
114 static final String CONTACT_ID = "contact_id"; field in interface:DialerDatabaseHelper.PrefixColumns
135 Phone.CONTACT_ID, // 4
172 ContactsContract.DeletedContacts.CONTACT_ID, // 0
219 + Tables.SMARTDIAL_TABLE + "." + SmartDialDbColumns.CONTACT_ID + ", "
349 SmartDialDbColumns.CONTACT_ID + " INTEGER," +
365 PrefixColumns.CONTACT_ID + " INTEGER" +
520 SmartDialDbColumns.CONTACT_ID + "=" + deleteContactId, null);
522 PrefixColumns.CONTACT_ID + "=" + deleteContactId, null);
542 PrefixColumns.CONTACT_ID
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java114 " WHERE " + RawContacts.CONTACT_ID + "=?" +
282 + AggregatedPresenceColumns.CONTACT_ID + ", "
285 + " SELECT " + PresenceColumns.CONTACT_ID + ","
296 + " WHERE " + PresenceColumns.CONTACT_ID
298 + " AND " + PresenceColumns.CONTACT_ID
305 " WHERE " + RawContacts.CONTACT_ID + "=?"
310 " WHERE " + AggregatedPresenceColumns.CONTACT_ID + "=?");
336 + RawContacts.CONTACT_ID + "=" + ContactsColumns.CONCRETE_ID + " AND "
341 + Tables.RAW_CONTACTS + " WHERE " + RawContacts.CONTACT_ID + "="
347 " SET " + RawContacts.CONTACT_ID
405 int CONTACT_ID = 1; field in interface:ContactAggregator.AggregationQuery
650 public static final int CONTACT_ID = 0; field in class:ContactAggregator.RawContactIdAndAccountQuery
1389 int CONTACT_ID = 0; field in interface:ContactAggregator.IdentityLookupMatchQuery
1433 int CONTACT_ID = 0; field in interface:ContactAggregator.NameLookupMatchQuery
1478 int CONTACT_ID = 0; field in interface:ContactAggregator.NameLookupMatchQueryWithParameter
1581 int CONTACT_ID = 0; field in interface:ContactAggregator.EmailLookupQuery
1624 int CONTACT_ID = 0; field in interface:ContactAggregator.PhoneLookupQuery
1681 int CONTACT_ID = 0; field in interface:ContactAggregator.ContactNameLookupQuery
1821 int CONTACT_ID = 13; field in interface:ContactAggregator.ContactReplaceSqlStatement
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DGroupMemberTileAdapter.java41 mIdIndex = GroupMemberLoader.GroupDetailQuery.CONTACT_ID;
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
H A DDeletedContactUtil.java49 DeletedContacts.CONTACT_ID
H A DRawContactUtil.java74 ContactsContract.RawContacts.CONTACT_ID
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DSearchIndexManager.java59 Data.CONTACT_ID,
297 sb.append(RawContacts.CONTACT_ID + " IN (");
325 SearchIndexColumns.CONTACT_ID + " IN (SELECT " +
326 RawContacts.CONTACT_ID +
341 mSb.append(Data.CONTACT_ID + ", ");
396 mValues.put(SearchIndexColumns.CONTACT_ID, contactId);
H A DContactsDatabaseHelper.java310 + SettingsColumns.CONCRETE_ACCOUNT_TYPE + "," + RawContacts.CONTACT_ID;
341 " WHERE " + RawContacts.CONTACT_ID + "=" + ContactsColumns.CONCRETE_ID +
342 " GROUP BY " + RawContacts.CONTACT_ID;
422 Tables.RAW_CONTACTS + "." + RawContacts.CONTACT_ID;
571 String CONTACT_ID = "presence_contact_id"; field in interface:ContactsDatabaseHelper.PresenceColumns
575 String CONTACT_ID = "presence_contact_id"; field in interface:ContactsDatabaseHelper.AggregatedPresenceColumns
577 String CONCRETE_CONTACT_ID = Tables.AGGREGATED_PRESENCE + "." + CONTACT_ID;
667 public static final String CONTACT_ID = "contact_id"; field in class:ContactsDatabaseHelper.SearchIndexColumns
876 PresenceColumns.CONTACT_ID + " INTEGER REFERENCES contacts(_id)," +
887 + Tables.PRESENCE + " (" + PresenceColumns.CONTACT_ID
[all...]
H A DContactsProvider2.java260 " WHERE " + RawContacts.CONTACT_ID + "=?";
458 public static final int CONTACT_ID = 5; field in interface:ContactsProvider2.DataContactsQuery
484 + "(SELECT " + RawContacts.CONTACT_ID
518 " WHERE " + RawContacts.CONTACT_ID + " = ?1 AND " + Contacts.PINNED + " <= " +
563 + Data.CONTACT_ID + ", "
771 .add(Phone.CONTACT_ID)
785 .add(RawContacts.CONTACT_ID)
813 .add(RawContacts.CONTACT_ID)
826 .add(Contacts.Entity.CONTACT_ID)
852 .add(Data.CONTACT_ID)
6700 int CONTACT_ID = 0; field in interface:ContactsProvider2.LookupBySourceIdQuery
6757 int CONTACT_ID = 0; field in interface:ContactsProvider2.LookupByRawContactIdQuery
6814 int CONTACT_ID = 0; field in interface:ContactsProvider2.LookupByDisplayNameQuery
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DPhoneNumberListAdapter.java71 Phone.CONTACT_ID, // 4
83 Phone.CONTACT_ID, // 4
94 public static final int CONTACT_ID = 4; field in class:PhoneNumberListAdapter.PhoneQuery
299 final long contactId = cursor.getLong(PhoneQuery.CONTACT_ID);
322 final long currentContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
324 final long previousContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
331 final long nextContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
347 PhoneQuery.PHOTO_URI, PhoneQuery.CONTACT_ID,
H A DContactListAdapter.java87 public static final int CONTACT_ID = 0; field in class:ContactListAdapter.ContactQuery
162 long contactId = cursor.getLong(ContactQuery.CONTACT_ID);
191 && getSelectedContactId() == cursor.getLong(ContactQuery.CONTACT_ID);
299 long contactId = cursor.getLong(ContactQuery.CONTACT_ID);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java267 + " AND " + Data.CONTACT_ID + " IN (";
271 Data.CONTACT_ID,
286 public static final int CONTACT_ID = 1; field in class:AggregationSuggestionEngine.DataQuery
326 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID);
380 long contactId = mDataCursor.getLong(DataQuery.CONTACT_ID);
/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DSmartDialCursorLoader.java94 row[PhoneQuery.CONTACT_ID] = contact.id;
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DVoiceContact.java123 Phone.CONTACT_ID,
140 final int personIdColumn = cursor.getColumnIndexOrThrow(Phone.CONTACT_ID);
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java260 Phone.CONTACT_ID // 8
271 private static final int CONTACT_ID = 8; field in class:PhoneNumberInteraction
392 mContactId = cursor.getLong(CONTACT_ID);
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
H A DContactsUtils.java278 new String[] {RawContacts.CONTACT_ID},
321 RawContacts.CONTACT_ID + "=" + contactId, null, null);
340 RawContacts.CONTACT_ID + "=" + contactId, null, null);
/packages/apps/Contacts/tests/src/com/android/contacts/interactions/
H A DContactDeletionInteractionTest.java142 Entity.RAW_CONTACT_ID, Entity.ACCOUNT_TYPE, Entity.DATA_SET, Entity.CONTACT_ID,
/packages/apps/Contacts/src/com/android/contacts/group/
H A DSuggestedMemberListAdapter.java55 RawContacts.CONTACT_ID, // 1
65 RawContacts.CONTACT_ID, // 1
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DConfirmAddDetailActivity.java177 RawContacts.CONTACT_ID,
181 final int CONTACT_ID = 0; field in interface:ConfirmAddDetailActivity.ExtraInfoQuery
357 ExtraInfoQuery.COLUMNS, RawContacts.CONTACT_ID + " = ?",
389 mSelection = RawContacts.CONTACT_ID + "=?";
394 mSelection = RawContacts.CONTACT_ID + "=?";
414 new String[] { RawContacts.CONTACT_ID },
H A DShowOrCreateActivity.java66 Email.CONTACT_ID,
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContactLoader.java129 Contacts.Entity.CONTACT_ID,
201 public static final int CONTACT_ID = 13; field in class:ContactLoader.ContactQuery
402 values.put(Data.CONTACT_ID, -1);
606 final long contactId = cursor.getLong(ContactQuery.CONTACT_ID);
657 cursorColumnToContentValues(cursor, cv, ContactQuery.CONTACT_ID);
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallerInfo.java464 // RawContacts.CONTACT_ID column). But looking up the mime type requires
483 Log.v(TAG, "'data/phones' URI; using RawContacts.CONTACT_ID");
484 columnName = RawContacts.CONTACT_ID;
488 Log.v(TAG, "'data' URI; using Data.CONTACT_ID");
489 // (Note Data.CONTACT_ID and RawContacts.CONTACT_ID are equivalent.)
490 columnName = Data.CONTACT_ID;

Completed in 462 milliseconds

123