Searched refs:rawContactIdSet (Results 1 – 4 of 4) sorted by relevance
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/util/ |
D | ContactAggregatorHelperTest.java | 109 Set<Long> rawContactIdSet = new HashSet<>(); in testFindConnectedRawContacts() local 110 rawContactIdSet.addAll(Arrays.asList(1l, 2l, 3l, 4l, 5l, 6l, 7l, 8l, 9l)); in testFindConnectedRawContacts() 131 Set<Set<Long>> actual = ContactAggregatorHelper.findConnectedComponents(rawContactIdSet, in testFindConnectedRawContacts()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | ContactAggregatorHelper.java | 94 public static Set<Set<Long>> findConnectedComponents(Set<Long> rawContactIdSet, Multimap<Long, in findConnectedComponents() argument 98 for (Long id : rawContactIdSet) { in findConnectedComponents()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator.java | 348 final Set<Long> rawContactIdSet = new HashSet<Long>(); in canJoinIntoContact() local 349 rawContactIdSet.add(rawContactId); in canJoinIntoContact() 351 isDataMaching(db, rawContactIdSet, rawContactIdsInSameAccount)) { in canJoinIntoContact()
|
D | AbstractContactAggregator.java | 824 rawContactIdSet) { in findConnectedRawContacts() argument 827 String rawContactIds = TextUtils.join(",", rawContactIdSet); in findConnectedRawContacts() 837 return ContactAggregatorHelper.findConnectedComponents(rawContactIdSet, matchingRawIdPairs); in findConnectedRawContacts()
|