Home
last modified time | relevance | path

Searched refs:rawContactIdSet (Results 1 – 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java999 final Set<Long> rawContactIdSet = new HashSet<Long>(); in canJoinIntoContact() local
1000 rawContactIdSet.add(rawContactId); in canJoinIntoContact()
1002 isDataMaching(db, rawContactIdSet, rawContactIdsInSameAccount)) { in canJoinIntoContact()
1194 private Set<Set<Long>> findConnectedRawContacts(SQLiteDatabase db, Set<Long> rawContactIdSet) { in findConnectedRawContacts() argument
1197 String rawContactIds = TextUtils.join(",", rawContactIdSet); in findConnectedRawContacts()
1207 return findConnectedComponents(rawContactIdSet, matchingRawIdPairs); in findConnectedRawContacts()
1215 static Set<Set<Long>> findConnectedComponents(Set<Long> rawContactIdSet, Multimap<Long, in findConnectedComponents() argument
1219 for (Long id : rawContactIdSet) { in findConnectedComponents()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java1661 Set<Long> rawContactIdSet = new HashSet<Long>(); in testFindConnectedRawContacts() local
1662 rawContactIdSet.addAll(Arrays.asList(1l, 2l, 3l, 4l, 5l, 6l, 7l, 8l, 9l)); in testFindConnectedRawContacts()
1683 Set<Set<Long>> actual = ContactAggregator.findConnectedComponents(rawContactIdSet, in testFindConnectedRawContacts()