Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DAppWidgetsRestoredReceiver.java29 int[] newIds = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS); in onReceive() local
30 if (oldIds.length == newIds.length) { in onReceive()
31 restoreAppWidgetIds(context, oldIds, newIds); in onReceive()
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionEngine.java340 final ArrayList<Long> newIds = new ArrayList<Long>(count); in updateSuggestedContactIds() local
347 newIds.add(contactId); in updateSuggestedContactIds()
351 mSuggestedContactIds = new long[newIds.size()]; in updateSuggestedContactIds()
353 for (final Long newId : newIds) { in updateSuggestedContactIds()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator2.java213 Set<Long> newIds = new HashSet<>(); in findRawContactMatchingCandidates() local
214 newIds.addAll(matchingCandidates.getRawContactIdSet()); in findRawContactMatchingCandidates()
216 while (!newIds.isEmpty()) { in findRawContactMatchingCandidates()
221 for (long rId : newIds) { in findRawContactMatchingCandidates()
234 newIds.clear(); in findRawContactMatchingCandidates()
235 newIds.addAll(tmpIdSet); in findRawContactMatchingCandidates()