Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DConversationNotifications.kt232 if (shouldIncrementUnread(recoveredBuilder)) unreadCount + 1 else unreadCount
235 }!!.unreadCount
254 if (expanded.contains(key)) state.copy(unreadCount = 0)
263 states.compute(key) { _, state -> state?.copy(unreadCount = 0) }
276 private data class ConversationState(val unreadCount: Int, val notification: Notification)
/aosp12/packages/apps/Car/Messenger/src/com/android/car/messenger/impl/datamodels/util/
H A DConversationFetchUtil.java70 int unreadCount = messagesToRead.size(); in fetchConversation() local
81 conversationBuilder.setMessages(messagesToRead).setUnreadCount(unreadCount); in fetchConversation()
/aosp12/packages/apps/Car/libs/car-messenger-common/src/com/android/car/messenger/common/
H A DConversation.java87 int unreadCount, in Conversation() argument
98 mUnreadCount = unreadCount; in Conversation()
407 public Builder setUnreadCount(int unreadCount) { in setUnreadCount() argument
408 mUnreadCount = unreadCount; in setUnreadCount()
/aosp12/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java815 int unreadCount = messageList.size(); in addToNotificationBar() local
816 if (unreadCount > 1) { in addToNotificationBar()
819 builder.setContentText(context.getString(R.string.notification_multiple, unreadCount)); in addToNotificationBar()
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DConversationLayout.java407 int unreadCount = extras.getInt(Notification.EXTRA_CONVERSATION_UNREAD_MESSAGE_COUNT); in setData() local
408 setUnreadCount(unreadCount); in setData()
417 public void setUnreadCount(int unreadCount) { in setUnreadCount() argument
418 mExpandButton.setNumber(unreadCount); in setUnreadCount()