Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java126 private FolderDotInfo mDotInfo = new FolderDotInfo(); field in FolderIcon
504 updateDotScale(mDotInfo.hasDot(), dotInfo.hasDot()); in setDotInfo()
505 mDotInfo = dotInfo; in setDotInfo()
561 return mDotInfo != null && mDotInfo.hasDot(); in hasDot()
627 if (!mForceHideDot && ((mDotInfo != null && mDotInfo.hasDot()) || mDotScale > 0)) { in drawDot()
686 boolean wasDotted = mDotInfo.hasDot(); in onAdd()
687 mDotInfo.addDotInfo(mActivity.getDotInfoForItem(item)); in onAdd()
688 boolean isDotted = mDotInfo.hasDot(); in onAdd()
697 boolean wasDotted = mDotInfo.hasDot(); in onRemove()
698 items.stream().map(mActivity::getDotInfoForItem).forEach(mDotInfo::subtractDotInfo); in onRemove()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/
DBubbleTextView.java141 private DotInfo mDotInfo; field in BubbleTextView
229 mDotInfo = null; in reset()
471 return mDotInfo != null; in hasDot()
646 boolean wasDotted = mDotInfo != null; in applyDotState()
647 mDotInfo = mActivity.getDotInfoForItem(itemInfo); in applyDotState()
648 boolean isDotted = mDotInfo != null; in applyDotState()
670 int count = mDotInfo.getNotificationCount(); in applyDotState()