Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationFilterTest.java140 when(mFsc.isSystemAlertNotification(any())).thenReturn(true); in testSuppressSystemAlertNotification()
157 when(mFsc.isSystemAlertNotification(any())).thenReturn(true); in testDoNotSuppressSystemAlertNotification()
162 when(mFsc.isSystemAlertNotification(any())).thenReturn(false); in testDoNotSuppressSystemAlertNotification()
167 when(mFsc.isSystemAlertNotification(any())).thenReturn(false); in testDoNotSuppressSystemAlertNotification()
193 when(mFsc.isSystemAlertNotification(any())).thenReturn(false); in testShouldFilterHiddenNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DForegroundServiceController.java150 public boolean isSystemAlertNotification(StatusBarNotification sbn) { in isSystemAlertNotification() method in ForegroundServiceController
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationFilter.java127 if (getFsc().isSystemAlertNotification(sbn)) { in shouldFilterOut()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
DForegroundServiceControllerTest.java280 assertTrue(mFsc.isSystemAlertNotification(sbn_user1_overlay)); in testOverlayPredicate()
281 assertFalse(mFsc.isSystemAlertNotification(sbn_user1_app1)); in testOverlayPredicate()