Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/badge/
DFolderBadgeInfo.java29 private int mNumNotifications; field in FolderBadgeInfo
39 mNumNotifications += badgeToAdd.getNotificationKeys().size(); in addBadgeInfo()
40 mNumNotifications = Utilities.boundToRange( in addBadgeInfo()
41 mNumNotifications, MIN_COUNT, BadgeInfo.MAX_COUNT); in addBadgeInfo()
48 mNumNotifications -= badgeToSubtract.getNotificationKeys().size(); in subtractBadgeInfo()
49 mNumNotifications = Utilities.boundToRange( in subtractBadgeInfo()
50 mNumNotifications, MIN_COUNT, BadgeInfo.MAX_COUNT); in subtractBadgeInfo()
60 return mNumNotifications > 0; in hasBadge()