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

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionView.java140 ArrayList<Long> rawContactIds = Lists.newArrayList();
142 rawContactIds.add(rawContact.rawContactId);
144 mListener.onJoinAction(mContactId, rawContactIds);
H A DContactEditorFragment.java1432 long rawContactIds[] = new long[rawContactIdList.size()];
1433 for (int i = 0; i < rawContactIds.length; i++) {
1434 rawContactIds[i] = rawContactIdList.get(i);
1439 args.putLongArray("rawContactIds", rawContactIds);
1462 long rawContactIds[] =
1463 getArguments().getLongArray("rawContactIds");
1464 targetFragment.doJoinSuggestedContact(rawContactIds);
1477 protected void doJoinSuggestedContact(long[] rawContactIds) { argument
1482 mState.setJoinWithRawContacts(rawContactIds);
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DSearchIndexManager.java285 public void updateIndexForRawContacts(Set<Long> contactIds, Set<Long> rawContactIds) { argument
288 " contacts / " + rawContactIds.size() + " raw contacts");
301 if (!rawContactIds.isEmpty()) {
306 for (Long rawContactId : rawContactIds) {
H A DContactsDatabaseHelper.java3713 final long[] rawContactIds;
3729 rawContactIds = new long[count];
3737 rawContactIds[i] = c.getLong(1);
3775 String.valueOf(rawContactIds[i]),
/packages/apps/Contacts/src/com/android/contacts/
H A DContactSaveService.java1018 long rawContactIds[];
1022 rawContactIds = new long[c.getCount()];
1023 for (int i = 0; i < rawContactIds.length; i++) {
1026 rawContactIds[i] = rawContactId;
1037 for (int i = 0; i < rawContactIds.length; i++) {
1055 for (int i = 0; i < rawContactIds.length; i++) {
1056 for (int j = 0; j < rawContactIds.length; j++) {
1058 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]);
1089 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactIds[
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
H A DContactsUtils.java336 ArrayList<Long> rawContactIds = new ArrayList<Long>();
343 rawContactIds.add(rawContactIdCursor.getLong(0));
351 return rawContactIds;
/packages/apps/Contacts/src/com/android/contacts/model/
H A DRawContactDeltaList.java393 public void setJoinWithRawContacts(long[] rawContactIds) { argument
394 mJoinWithRawContactIds = rawContactIds;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java433 final long[] rawContactIds;
440 rawContactIds = new long[actualCount];
446 rawContactIds[index] = c.getLong(AggregationQuery._ID);
460 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i],
856 final String rawContactIds = rawContactIdsBuilder.toString();
872 " AND d2." + Data.RAW_CONTACT_ID + " IN (" + rawContactIds + ")",
892 " AND d2." + Data.RAW_CONTACT_ID + " IN (" + rawContactIds + ")",
919 " AND d2." + Data.RAW_CONTACT_ID + " IN (" + rawContactIds + ")" +

Completed in 235 milliseconds