Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupDataProvider.java83 DotInfo dotInfo = mPackageUserToDotInfos.get(postedPackageUserKey); in onNotificationPosted() local
84 if (dotInfo == null) { in onNotificationPosted()
85 dotInfo = new DotInfo(); in onNotificationPosted()
86 mPackageUserToDotInfos.put(postedPackageUserKey, dotInfo); in onNotificationPosted()
88 if (dotInfo.addOrUpdateNotificationKey(notificationKey)) { in onNotificationPosted()
113 DotInfo dotInfo = mPackageUserToDotInfos.get(packageUserKey); in onNotificationFullRefresh() local
114 if (dotInfo == null) { in onNotificationFullRefresh()
115 dotInfo = new DotInfo(); in onNotificationFullRefresh()
116 mPackageUserToDotInfos.put(packageUserKey, dotInfo); in onNotificationFullRefresh()
118 dotInfo.addOrUpdateNotificationKey(NotificationKeyData.fromNotification(notification)); in onNotificationFullRefresh()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java500 public void setDotInfo(FolderDotInfo dotInfo) { in setDotInfo() argument
501 updateDotScale(mDotInfo.hasDot(), dotInfo.hasDot()); in setDotInfo()
502 mDotInfo = dotInfo; in setDotInfo()