Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/
DNotificationDataManagerTest.java89 assertThat(mNotificationDataManager.isMessageNotificationMuted(mNonMessageNotification)) in addNewMessageNotification_newNonMessageNotification_doesNothing()
99 assertThat(mNotificationDataManager.isMessageNotificationMuted(mMessageNotification)) in addNewMessageNotification_notificationExists_muteStateNotUpdated()
108 assertThat(mNotificationDataManager.isMessageNotificationMuted(mNonMessageNotification)) in toggleMute_nonMessagingNotification_doesNothing()
117 assertThat(mNotificationDataManager.isMessageNotificationMuted(mMessageNotification)) in toggleMute_messagingNotification_togglesMuteState()
124 assertThat(mNotificationDataManager.isMessageNotificationMuted(mNonMessageNotification)) in toggleMute_notAddedNotification_doesNothing()
131 assertThat(mNotificationDataManager.isMessageNotificationMuted(mMessageNotification)) in toggleMute_notAddedMessageNotification_doesNothing()
DCarHeadsUpNotificationManagerTest.java426 when(mNotificationDataManager.isMessageNotificationMuted(any())).thenReturn(false); in maybeShowHeadsUp_nonMutedNotification_headsUpShown()
444 when(mNotificationDataManager.isMessageNotificationMuted(any())).thenReturn(true); in maybeShowHeadsUp_mutedNotification_headsUpNotShown()
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationDataManager.java133 public boolean isMessageNotificationMuted(StatusBarNotification notification) { in isMessageNotificationMuted() method in NotificationDataManager
DNotificationClickHandlerFactory.java225 (mNotificationDataManager.isMessageNotificationMuted(messageNotification))
DCarHeadsUpNotificationManager.java722 if (mNotificationDataManager.isMessageNotificationMuted(statusBarNotification)) { in shouldShowHeadsUp()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCarNotificationActionsView.java182 button.setText((manager != null && manager.isMessageNotificationMuted( in createMuteButton()