Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupDataProvider.java59 private final Map<PackageUserKey, DotInfo> mPackageUserToDotInfos = new HashMap<>(); field in PopupDataProvider
100 DotInfo dotInfo = mPackageUserToDotInfos.get(postedPackageUserKey); in onNotificationPosted()
103 mPackageUserToDotInfos.put(postedPackageUserKey, dotInfo); in onNotificationPosted()
113 DotInfo oldDotInfo = mPackageUserToDotInfos.get(removedPackageUserKey); in onNotificationRemoved()
116 mPackageUserToDotInfos.remove(removedPackageUserKey); in onNotificationRemoved()
126 HashMap<PackageUserKey, DotInfo> updatedDots = new HashMap<>(mPackageUserToDotInfos); in onNotificationFullRefresh()
127 mPackageUserToDotInfos.clear(); in onNotificationFullRefresh()
130 DotInfo dotInfo = mPackageUserToDotInfos.get(packageUserKey); in onNotificationFullRefresh()
133 mPackageUserToDotInfos.put(packageUserKey, dotInfo); in onNotificationFullRefresh()
139 for (PackageUserKey packageUserKey : mPackageUserToDotInfos.keySet()) { in onNotificationFullRefresh()
[all …]