Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupDataProvider.java75 DotInfo dotInfo = mPackageUserToDotInfos.get(postedPackageUserKey); in onNotificationPosted() local
77 if (dotInfo == null) { in onNotificationPosted()
88 ? dotInfo.removeNotificationKey(notificationKey) in onNotificationPosted()
89 : dotInfo.addOrUpdateNotificationKey(notificationKey); in onNotificationPosted()
90 if (dotInfo.getNotificationKeys().size() == 0) { in onNotificationPosted()
120 DotInfo dotInfo = mPackageUserToDotInfos.get(packageUserKey); in onNotificationFullRefresh() local
121 if (dotInfo == null) { in onNotificationFullRefresh()
122 dotInfo = new DotInfo(); in onNotificationFullRefresh()
123 mPackageUserToDotInfos.put(packageUserKey, dotInfo); in onNotificationFullRefresh()
125 dotInfo.addOrUpdateNotificationKey(NotificationKeyData.fromNotification(notification)); in onNotificationFullRefresh()
[all …]
DPopupContainerWithArrow.java504 DotInfo dotInfo = mLauncher.getDotInfoForItem(itemInfo);
505 if (mNotificationItemView != null && dotInfo != null) {
507 dotInfo.getNotificationCount(), itemInfo.iconColor);
517 DotInfo dotInfo = updatedDots.get(PackageUserKey.fromItemInfo(originalInfo));
518 if (dotInfo == null || dotInfo.getNotificationKeys().size() == 0) {
526 NotificationKeyData.extractKeysOnly(dotInfo.getNotificationKeys()));
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java403 public void setDotInfo(FolderDotInfo dotInfo) {
404 updateDotScale(mDotInfo.hasDot(), dotInfo.hasDot());
405 mDotInfo = dotInfo;