Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DPhotoStore.java149 Set<Long> keysToRemove = new HashSet<Long>(); in cleanup() local
150 keysToRemove.addAll(mEntries.keySet()); in cleanup()
151 keysToRemove.removeAll(keysInUse); in cleanup()
152 if (!keysToRemove.isEmpty()) { in cleanup()
153 Log.d(TAG, "cleanup removing " + keysToRemove.size() + " entries"); in cleanup()
154 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/apps/Settings/src/com/android/settings/
DPrivacySettings.java92 Set<String> keysToRemove = new HashSet<>(); in onCreate() local
93 getNonVisibleKeys(getActivity(), keysToRemove); in onCreate() local
97 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()