HomeSort by relevance Sort by last modified time
    Searched refs:rawContactIds (Results 1 - 13 of 13) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/editor/
JoinSuggestedContactDialogFragment.java 29 private static final String ARG_RAW_CONTACT_IDS = "rawContactIds";
31 public static void show(ContactEditorBaseFragment fragment, long[] rawContactIds) {
33 args.putLongArray(ARG_RAW_CONTACT_IDS, rawContactIds);
52 long rawContactIds[] =
54 targetFragment.doJoinSuggestedContact(rawContactIds);
AggregationSuggestionView.java 147 ArrayList<Long> rawContactIds = Lists.newArrayList();
149 rawContactIds.add(rawContact.rawContactId);
151 mListener.onJoinAction(mContactId, rawContactIds);
ContactEditorBaseFragment.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 70 * @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) {
100 + " IN (" + TextUtils.join(",", rawContactIds) + ") "
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactAggregatorHelper.java 42 // Index to rawContactIds mapping
43 final Map<Integer, Set<Long>> rawContactIds = new HashMap<>();
49 rawContactIds.put(index, rIds);
67 final Set<Long> rIdSet = rawContactIds.get(i);
70 rawContactIds.remove(i);
80 Set<Long> ids = rawContactIds.get(Iterables.getOnlyElement(s));
RawContactMatcher.java 287 ArrayList<Long> rawContactIds = null;
296 if (rawContactIds == null) {
297 rawContactIds = new ArrayList<>();
299 rawContactIds.add(score.getRawContactId());
303 return rawContactIds;
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java 448 final long[] rawContactIds;
455 rawContactIds = new long[actualCount];
461 rawContactIds[index] = c.getLong(AggregationQuery._ID);
475 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i],
    [all...]
ContactAggregator2.java 241 * Find out which mime-types are shared by more than one contacts for {@code rawContactIds}.
243 * {@code rawContactIds} should be a comma separated ID list.
245 private void clearSuperPrimarySetting(SQLiteDatabase db, String rawContactIds) {
249 Data.RAW_CONTACT_ID + " IN (" + rawContactIds + ") group by " +
280 " IN (" + rawContactIds + ")";
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java 289 public void updateIndexForRawContacts(Set<Long> contactIds, Set<Long> rawContactIds) {
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));
ContactsDatabaseHelper.java     [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 336 ArrayList<Long> rawContactIds = new ArrayList<Long>();
343 rawContactIds.add(rawContactIdCursor.getLong(0));
351 return rawContactIds;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDeltaList.java 387 public void setJoinWithRawContacts(long[] rawContactIds) {
388 mJoinWithRawContactIds = rawContactIds;

Completed in 393 milliseconds