HomeSort by relevance Sort by last modified time
    Searched full:rawcontactids (Results 1 - 9 of 9) sorted by null

  /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/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 143 ArrayList<Long> rawContactIds = Lists.newArrayList();
145 rawContactIds.add(rawContact.rawContactId);
147 mListener.onJoinAction(mContactId, rawContactIds);
ContactEditorFragment.java     [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/apps/Contacts/src/com/android/contacts/
ContactSaveService.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;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 446 final long[] rawContactIds;
453 rawContactIds = new long[actualCount];
459 rawContactIds[index] = c.getLong(AggregationQuery._ID);
473 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i],
    [all...]

Completed in 933 milliseconds