Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolderIcon.java126 private FolderDotInfo mDotInfo = new FolderDotInfo(); field in FolderIcon
506 updateDotScale(mDotInfo.hasDot(), dotInfo.hasDot()); in setDotInfo()
507 mDotInfo = dotInfo; in setDotInfo()
563 return mDotInfo != null && mDotInfo.hasDot(); in hasDot()
629 if (!mForceHideDot && ((mDotInfo != null && mDotInfo.hasDot()) || mDotScale > 0)) { in drawDot()
692 boolean wasDotted = mDotInfo.hasDot(); in onAdd()
693 mDotInfo.addDotInfo(mActivity.getDotInfoForItem(item)); in onAdd()
694 boolean isDotted = mDotInfo.hasDot(); in onAdd()
704 boolean wasDotted = mDotInfo.hasDot(); in onRemove()
705 items.stream().map(mActivity::getDotInfoForItem).forEach(mDotInfo::subtractDotInfo); in onRemove()
[all …]
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DBubbleTextView.java155 private DotInfo mDotInfo; field in BubbleTextView
246 mDotInfo = null; in reset()
584 return mDotInfo != null; in hasDot()
769 boolean wasDotted = mDotInfo != null; in applyDotState()
770 mDotInfo = mActivity.getDotInfoForItem(itemInfo); in applyDotState()
771 boolean isDotted = mDotInfo != null; in applyDotState()
793 int count = mDotInfo.getNotificationCount(); in applyDotState()