Searched defs:rawContactIds (Results 1 - 8 of 8) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
H A DContactsTableUtil.java70 * @param rawContactIds A set of raw contacts ids to refresh the contact for.
73 Set<Long> rawContactIds) {
74 if (rawContactIds.isEmpty()) {
78 db.execSQL(buildUpdateLastUpdateSql(rawContactIds));
84 * @param rawContactIds The raw contact ids that contacts should be updated for.
87 private static String buildUpdateLastUpdateSql(Set<Long> rawContactIds) { argument
100 + " IN (" + TextUtils.join(",", rawContactIds) + ") "
72 updateContactLastUpdateByRawContactId(SQLiteDatabase db, Set<Long> rawContactIds) argument
/packages/apps/Contacts/src/com/android/contacts/model/
H A DRawContactDeltaList.java397 public void setJoinWithRawContacts(long[] rawContactIds) { argument
398 mJoinWithRawContactIds = rawContactIds;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactsRequest.java218 public void setRawContactIds(ArrayList<String> rawContactIds) { argument
219 mRawContactIds = rawContactIds;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DSearchIndexManager.java289 public void updateIndexForRawContacts(Set<Long> contactIds, Set<Long> rawContactIds) { argument
292 " contacts / " + rawContactIds.size() + " raw contacts");
302 if (!rawContactIds.isEmpty()) {
307 // in rawContactIds. For every raw contact in rawContactIds that we are updating
314 sb.append(TextUtils.join(",", rawContactIds));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator2.java243 * Find out which mime-types are shared by more than one contacts for {@code rawContactIds}.
245 * {@code rawContactIds} should be a comma separated ID list.
247 private void clearSuperPrimarySetting(SQLiteDatabase db, String rawContactIds) { argument
251 Data.RAW_CONTACT_ID + " IN (" + rawContactIds + ") group by " +
282 " IN (" + rawContactIds + ")";
H A DAbstractContactAggregator.java459 final long[] rawContactIds;
466 rawContactIds = new long[actualCount];
472 rawContactIds[index] = c.getLong(AggregationQuery._ID);
486 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i],
827 String rawContactIds = TextUtils.join(",", rawContactIdSet);
828 findIdPairs(db, buildExceptionMatchingSql(rawContactIds, rawContactIds),
830 findIdPairs(db, buildIdentityMatchingSql(rawContactIds, rawContactIds,
832 findIdPairs(db, buildEmailMatchingSql(rawContactIds, rawContactId
867 createContactForRawContacts(SQLiteDatabase db, TransactionContext txContext, Set<Long> rawContactIds, Long contactId) argument
910 markAggregated(SQLiteDatabase db, String rawContactIds) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/
H A DContactSaveService.java100 public static final String EXTRA_RAW_CONTACT_IDS = "rawContactIds";
1244 public static Intent createSplitContactIntent(Context context, long[][] rawContactIds, argument
1248 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACT_IDS, rawContactIds);
1258 public static Intent createHardSplitContactIntent(Context context, long[][] rawContactIds) { argument
1261 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACT_IDS, rawContactIds);
1267 final long rawContactIds[][] = (long[][]) intent
1271 if (rawContactIds == null) {
1281 for (int i = 0; i < rawContactIds.length; i++) {
1282 for (int j = 0; j < rawContactIds.length; j++) {
1284 if (!buildSplitTwoContacts(operations, rawContactIds[
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java1601 public void doJoinSuggestedContact(long[] rawContactIds) { argument
1606 mState.setJoinWithRawContacts(rawContactIds);

Completed in 234 milliseconds