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.java82 DotInfo dotInfo = mPackageUserToDotInfos.get(postedPackageUserKey); in onNotificationPosted() local
83 if (dotInfo == null) { in onNotificationPosted()
84 dotInfo = new DotInfo(); in onNotificationPosted()
85 mPackageUserToDotInfos.put(postedPackageUserKey, dotInfo); in onNotificationPosted()
87 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 …]
DPopupContainerWithArrow.java449 DotInfo dotInfo = mLauncher.getDotInfoForItem(itemInfo);
450 if (mNotificationItemView != null && dotInfo != null) {
451 mNotificationItemView.updateHeader(dotInfo.getNotificationCount());
597 DotInfo dotInfo = updatedDots.get(PackageUserKey.fromItemInfo(originalInfo));
598 if (dotInfo == null || dotInfo.getNotificationKeys().size() == 0) {
607 NotificationKeyData.extractKeysOnly(dotInfo.getNotificationKeys()));
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java503 public void setDotInfo(FolderDotInfo dotInfo) { in setDotInfo() argument
504 updateDotScale(mDotInfo.hasDot(), dotInfo.hasDot()); in setDotInfo()
505 mDotInfo = dotInfo; in setDotInfo()