Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationFilterTest.java172 when(mFsc.isSystemAlertNotification(any())).thenReturn(true); in testSuppressSystemAlertNotification()
189 when(mFsc.isSystemAlertNotification(any())).thenReturn(true); in testDoNotSuppressSystemAlertNotification()
194 when(mFsc.isSystemAlertNotification(any())).thenReturn(false); in testDoNotSuppressSystemAlertNotification()
199 when(mFsc.isSystemAlertNotification(any())).thenReturn(false); in testDoNotSuppressSystemAlertNotification()
225 when(mFsc.isSystemAlertNotification(any())).thenReturn(false); in testShouldFilterHiddenNotifications()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DAppOpsCoordinatorTest.java147 when(mForegroundServiceController.isSystemAlertNotification(sbn)).thenReturn(true); in filterTest_systemAlertNotificationUnnecessary()
167 when(mForegroundServiceController.isSystemAlertNotification(sbn)).thenReturn(false); in filterTest_doNotFilter()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationFilter.java134 if (getFsc().isSystemAlertNotification(sbn)) { in shouldFilterOut()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DForegroundServiceController.java208 public boolean isSystemAlertNotification(StatusBarNotification sbn) { in isSystemAlertNotification() method in ForegroundServiceController
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DAppOpsCoordinator.java106 if (mForegroundServiceController.isSystemAlertNotification(sbn)) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
DForegroundServiceControllerTest.java404 assertTrue(mFsc.isSystemAlertNotification(sbn_user1_overlay)); in testOverlayPredicate()
405 assertFalse(mFsc.isSystemAlertNotification(sbn_user1_app1)); in testOverlayPredicate()