Home
last modified time | relevance | path

Searched refs:suppressAwakeHeadsUp (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptSuppressor.java39 default boolean suppressAwakeHeadsUp(NotificationEntry entry) { in suppressAwakeHeadsUp() method
DVisualInterruptionDecisionProviderImpl.kt337 .firstOrNull { it.suppressAwakeHeadsUp(entry) } in checkSuppressAwakeHeadsUp()
DNotificationInterruptStateProviderImpl.java477 if (mSuppressors.get(i).suppressAwakeHeadsUp(entry)) { in shouldHeadsUpWhenAwake()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenterTest.java150 assertFalse(mInterruptSuppressor.suppressAwakeHeadsUp(createNotificationEntry())); in testNoSuppressHeadsUp_default_refactorDisabled()
170 mInterruptSuppressor.suppressAwakeHeadsUp(createNotificationEntry())); in testSuppressHeadsUp_disabledStatusBar_refactorDisabled()
192 mInterruptSuppressor.suppressAwakeHeadsUp(createNotificationEntry())); in testSuppressHeadsUp_disabledNotificationShade_refactorDisabled()
221 assertFalse(mInterruptSuppressor.suppressAwakeHeadsUp(createFsiNotificationEntry())); in testNoSuppressHeadsUp_FSI_nonOccludedKeyguard_refactorDisabled()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java296 public boolean suppressAwakeHeadsUp(NotificationEntry entry) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProviderImplTest.java210 assertThat(defaultSuppressor.suppressAwakeHeadsUp(entry)).isFalse(); in testDefaultSuppressorDoesNotSuppress()
1127 public boolean suppressAwakeHeadsUp(NotificationEntry entry) {
DVisualInterruptionDecisionProviderTestBase.kt153 override fun suppressAwakeHeadsUp(entry: NotificationEntry?) = true in <lambda>() method in com.android.systemui.statusbar.notification.interruption.VisualInterruptionDecisionProviderTestBase