Home
last modified time | relevance | path

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

/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DEABService.java461 ArrayList<Long> uniqueRawContactIds = new ArrayList<Long>(); in checkForContactNumberChanges() local
478 if (uniqueRawContactIds.isEmpty()) { in checkForContactNumberChanges()
479 uniqueRawContactIds.add(rawContactId); in checkForContactNumberChanges()
480 } else if (!uniqueRawContactIds.contains(rawContactId)) { in checkForContactNumberChanges()
481 uniqueRawContactIds.add(rawContactId); in checkForContactNumberChanges()
488 checkForPhoneNumberDelete(uniqueRawContactIds); in checkForContactNumberChanges()
574 private void checkForPhoneNumberDelete(ArrayList<Long> uniqueRawContactIds) { in checkForPhoneNumberDelete() argument
576 if (null != uniqueRawContactIds && uniqueRawContactIds.size() > 0) { in checkForPhoneNumberDelete()
577 for (int i = 0; i < uniqueRawContactIds.size(); i++) { in checkForPhoneNumberDelete()
578 Long rawContactId = uniqueRawContactIds.get(i); in checkForPhoneNumberDelete()