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.java467 ArrayList<Long> uniqueRawContactIds = new ArrayList<Long>(); in checkForContactNumberChanges() local
484 if (uniqueRawContactIds.isEmpty()) { in checkForContactNumberChanges()
485 uniqueRawContactIds.add(rawContactId); in checkForContactNumberChanges()
486 } else if (!uniqueRawContactIds.contains(rawContactId)) { in checkForContactNumberChanges()
487 uniqueRawContactIds.add(rawContactId); in checkForContactNumberChanges()
494 checkForPhoneNumberDelete(uniqueRawContactIds); in checkForContactNumberChanges()
580 private void checkForPhoneNumberDelete(ArrayList<Long> uniqueRawContactIds) { in checkForPhoneNumberDelete() argument
582 if (null != uniqueRawContactIds && uniqueRawContactIds.size() > 0) { in checkForPhoneNumberDelete()
583 for (int i = 0; i < uniqueRawContactIds.size(); i++) { in checkForPhoneNumberDelete()
584 Long rawContactId = uniqueRawContactIds.get(i); in checkForPhoneNumberDelete()