Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DNotificationDataManagerTest.java102 assertThat(mNotificationDataManager.isMessageNotificationMuted(mNonMessageNotification)) in addNewMessageNotification_newNonMessageNotification_doesNothing()
112 assertThat(mNotificationDataManager.isMessageNotificationMuted(mMessageNotification)) in addNewMessageNotification_notificationExists_muteStateNotUpdated()
121 assertThat(mNotificationDataManager.isMessageNotificationMuted(mNonMessageNotification)) in toggleMute_nonMessagingNotification_doesNothing()
130 assertThat(mNotificationDataManager.isMessageNotificationMuted(mMessageNotification)) in toggleMute_messagingNotification_togglesMuteState()
137 assertThat(mNotificationDataManager.isMessageNotificationMuted(mNonMessageNotification)) in toggleMute_notAddedNotification_doesNothing()
144 assertThat(mNotificationDataManager.isMessageNotificationMuted(mMessageNotification)) in toggleMute_notAddedMessageNotification_doesNothing()
DNotificationClickHandlerFactoryTest.java335 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_togglesMute()
341 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_togglesMute()
347 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_togglesMute()
358 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_mutePendingIntent_notificationDataManagerUnchanged()
365 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_mutePendingIntent_notificationDataManagerUnchanged()
405 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_mutePendingIntent_firesPendingIntent()
423 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_isMuted_muteStatusSetTrue()
438 assertThat(notificationDataManager.isMessageNotificationMuted( in onClickMuteClickHandler_isUnmuted_muteStatusSetFalse()
DCarHeadsUpNotificationManagerTest.java352 when(mNotificationDataManager.isMessageNotificationMuted(any())).thenReturn(false); in maybeShowHeadsUp_nonMutedNotification_returnsTrueAndAddedToQueue()
365 when(mNotificationDataManager.isMessageNotificationMuted(any())).thenReturn(true); in maybeShowHeadsUp_mutedNotification_returnsFalseAndNotAddedToQueue()
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationDataManager.java174 public boolean isMessageNotificationMuted(AlertEntry alertEntry) { in isMessageNotificationMuted() method in NotificationDataManager
DNotificationClickHandlerFactory.java278 mNotificationDataManager.isMessageNotificationMuted(messageNotification));
DCarHeadsUpNotificationManager.java740 if (mNotificationDataManager.isMessageNotificationMuted(alertEntry)) { in shouldShowHeadsUp()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCarNotificationActionsView.java322 setMuteStatus(button, mNotificationDataManager.isMessageNotificationMuted(alertEntry)); in createMuteButton()
/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/template/
DCarNotificationActionsViewTest.java491 when(mNotificationDataManager.isMessageNotificationMuted(any(AlertEntry.class))) in messageIsMuted()