Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupDataProvider.java71 private void updateNotificationDots(Predicate<PackageUserKey> updatedDots) { in updateNotificationDots() argument
72 mNotificationDotsChangeListener.accept(updatedDots); in updateNotificationDots()
73 mChangeListener.onNotificationDotsUpdated(updatedDots); in updateNotificationDots()
106 HashMap<PackageUserKey, DotInfo> updatedDots = new HashMap<>(mPackageUserToDotInfos); in onNotificationFullRefresh()
120 DotInfo prevDot = updatedDots.get(packageUserKey); in onNotificationFullRefresh()
124 updatedDots.put(packageUserKey, newDot); in onNotificationFullRefresh()
129 updatedDots.remove(packageUserKey); in onNotificationFullRefresh()
133 if (!updatedDots.isEmpty()) { in onNotificationFullRefresh()
134 updateNotificationDots(updatedDots::containsKey); in onNotificationFullRefresh()
136 trimNotifications(updatedDots); in onNotificationFullRefresh()
[all …]
DPopupContainerWithArrow.java603 public void onNotificationDotsUpdated(Predicate<PackageUserKey> updatedDots) {
606 if (updatedDots.test(packageUser)) {
613 public void trimNotifications(Map<PackageUserKey, DotInfo> updatedDots) {
618 DotInfo dotInfo = updatedDots.get(PackageUserKey.fromItemInfo(originalInfo));
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsStore.java137 public void updateNotificationDots(Predicate<PackageUserKey> updatedDots) { in updateNotificationDots() argument
141 if (mTempKey.updateFromItemInfo(info) && updatedDots.test(mTempKey)) { in updateNotificationDots()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncher.java1323 private void updateNotificationDots(Predicate<PackageUserKey> updatedDots) { in updateNotificationDots() argument
1324 mWorkspace.updateNotificationDots(updatedDots); in updateNotificationDots()
1325 mAppsView.getAppsStore().updateNotificationDots(updatedDots); in updateNotificationDots()
DWorkspace.java3113 public void updateNotificationDots(Predicate<PackageUserKey> updatedDots) { in updateNotificationDots() argument
3116 || updatedDots.test(packageUserKey); in updateNotificationDots()