Home
last modified time | relevance | path

Searched refs:shouldBubbleUp (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationInterruptionStateProviderTest.java477 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isTrue(); in testShouldBubbleUp_true()
490 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldBubbleUp_false_notAllowedToBubble()
503 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldBubbleUp_false_notABubble()
517 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldBubbleUp_false_invalidMetadata()
530 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldBubbleUp_false_alertAwakeCommonFalse()
543 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldBubbleUp_false_alertCommonFalse()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java360 && mNotificationInterruptionStateProvider.shouldBubbleUp(e) in restoreBubbles()
645 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
656 boolean shouldBubble = mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationInterruptionStateProvider.java167 public boolean shouldBubbleUp(NotificationEntry entry) { in shouldBubbleUp() method in NotificationInterruptionStateProvider