Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DPhotoStore.java150 Set<Long> keysToRemove = new ArraySet<>(); in cleanup() local
151 keysToRemove.addAll(mEntries.keySet()); in cleanup()
152 keysToRemove.removeAll(keysInUse); in cleanup()
153 if (!keysToRemove.isEmpty()) { in cleanup()
154 Log.d(TAG, "cleanup removing " + keysToRemove.size() + " entries"); in cleanup()
155 for (long key : keysToRemove) { in cleanup()
/packages/apps/Launcher2/src/com/android/launcher2/
DPagedViewIconCache.java88 HashSet<Key> keysToRemove = new HashSet<Key>(mIconOutlineCache.keySet()); in retainAll() local
89 keysToRemove.removeAll(keysToKeep); in retainAll()
90 for (Key key : keysToRemove) { in retainAll()
/packages/services/Car/car-lib/src/android/car/cluster/
DCarInstrumentClusterManager.java134 List<String> keysToRemove = new ArrayList<>(1); in unregisterCallback() local
139 keysToRemove.add(entry.getKey()); in unregisterCallback()
144 for (String key: keysToRemove) { in unregisterCallback()
/packages/apps/Settings/src/com/android/settings/
DPrivacySettings.java97 Set<String> keysToRemove = new HashSet<>(); in onCreate() local
98 getNonVisibleKeys(getActivity(), keysToRemove); in onCreate() local
102 if (keysToRemove.contains(preference.getKey())) { in onCreate()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationUtils.java308 Set<NotificationKey> keysToRemove = Sets.newHashSet(); in createNotificationString() local
313 keysToRemove.add(key); in createNotificationString()
321 for (NotificationKey key : keysToRemove) { in createNotificationString()