Home
last modified time | relevance | path

Searched refs:contactIds (Results 1 – 4 of 4) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DContactMatcher.java373 ArrayList<Long> contactIds = null; in prepareSecondaryMatchCandidates() local
383 if (contactIds == null) { in prepareSecondaryMatchCandidates()
384 contactIds = new ArrayList<Long>(); in prepareSecondaryMatchCandidates()
386 contactIds.add(score.mContactId); in prepareSecondaryMatchCandidates()
390 return contactIds; in prepareSecondaryMatchCandidates()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DSearchIndexManager.java289 public void updateIndexForRawContacts(Set<Long> contactIds, Set<Long> rawContactIds) { in updateIndexForRawContacts() argument
291 Log.v(TAG, "Updating search index for " + contactIds.size() + in updateIndexForRawContacts()
296 if (!contactIds.isEmpty()) { in updateIndexForRawContacts()
299 sb.append(TextUtils.join(",", contactIds)); in updateIndexForRawContacts()
303 if (!contactIds.isEmpty()) { in updateIndexForRawContacts()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationUtils.java1756 ArrayList<Long> contactIds = new ArrayList<Long>(); in findContacts() local
1758 return contactIds; in findContacts()
1762 contactIds.add(c.getLong(0)); in findContacts()
1767 return contactIds; in findContacts()
1775 final List<Long> contactIds = findContacts(context, Arrays.asList( in getContactInfo() local
1778 if (contactIds != null) { in getContactInfo()
1779 for (final long id : contactIds) { in getContactInfo()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java463 final long[] contactIds; in aggregateInTransaction() local
470 contactIds = new long[actualCount]; in aggregateInTransaction()
476 contactIds[index] = c.getLong(AggregationQuery.CONTACT_ID); in aggregateInTransaction()
489 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i], in aggregateInTransaction()