Searched refs:uniqueRawContactIds (Results 1 – 1 of 1) sorted by relevance
467 ArrayList<Long> uniqueRawContactIds = new ArrayList<Long>(); in checkForContactNumberChanges() local484 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() argument582 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()