Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DAppWidgetsRestoredReceiver.java40 final int[] newIds = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS); in onReceive() local
41 if (oldIds != null && newIds != null && oldIds.length == newIds.length) { in onReceive()
42 RestoreDbTask.setRestoredAppWidgetIds(context, oldIds, newIds); in onReceive()
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionEngine.java343 final ArrayList<Long> newIds = new ArrayList<Long>(count); in updateSuggestedContactIds() local
349 newIds.add(contactId); in updateSuggestedContactIds()
353 mSuggestedContactIds = new long[newIds.size()]; in updateSuggestedContactIds()
355 for (final Long newId : newIds) { in updateSuggestedContactIds()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator2.java215 Set<Long> newIds = new ArraySet<>(); in findRawContactMatchingCandidates() local
216 newIds.addAll(matchingCandidates.getRawContactIdSet()); in findRawContactMatchingCandidates()
218 while (!newIds.isEmpty()) { in findRawContactMatchingCandidates()
223 for (long rId : newIds) { in findRawContactMatchingCandidates()
236 newIds.clear(); in findRawContactMatchingCandidates()
237 newIds.addAll(tmpIdSet); in findRawContactMatchingCandidates()
/packages/apps/Launcher3/src/com/android/launcher3/provider/
DRestoreDbTask.java305 @NonNull int[] newIds) { in setRestoredAppWidgetIds() argument
308 .putString(APPWIDGET_IDS, IntArray.wrap(newIds).toConcatString()) in setRestoredAppWidgetIds()