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.java63 private Map<PackageUserKey, DotInfo> mPackageUserToDotInfos = new HashMap<>(); field in PopupDataProvider
83 DotInfo dotInfo = mPackageUserToDotInfos.get(postedPackageUserKey); in onNotificationPosted()
86 mPackageUserToDotInfos.put(postedPackageUserKey, dotInfo); in onNotificationPosted()
96 DotInfo oldDotInfo = mPackageUserToDotInfos.get(removedPackageUserKey); in onNotificationRemoved()
99 mPackageUserToDotInfos.remove(removedPackageUserKey); in onNotificationRemoved()
109 HashMap<PackageUserKey, DotInfo> updatedDots = new HashMap<>(mPackageUserToDotInfos); in onNotificationFullRefresh()
110 mPackageUserToDotInfos.clear(); in onNotificationFullRefresh()
113 DotInfo dotInfo = mPackageUserToDotInfos.get(packageUserKey); in onNotificationFullRefresh()
116 mPackageUserToDotInfos.put(packageUserKey, dotInfo); in onNotificationFullRefresh()
122 for (PackageUserKey packageUserKey : mPackageUserToDotInfos.keySet()) { in onNotificationFullRefresh()
[all …]