Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProviderImplTest.java408 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isTrue(); in testShouldBubbleUp()
423 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldNotBubbleUp_notAllowedToBubble()
438 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldNotBubbleUp_notABubble()
454 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldNotBubbleUp_invalidMetadata()
464 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_suppressedInterruptions()
474 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_filteredOut()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProvider.java45 boolean shouldBubbleUp(NotificationEntry entry); in shouldBubbleUp() method
DNotificationInterruptStateProviderImpl.java131 public boolean shouldBubbleUp(NotificationEntry entry) { in shouldBubbleUp() method in NotificationInterruptStateProviderImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
DBubblesManager.java288 && mNotificationInterruptStateProvider.shouldBubbleUp(entry) in BubblesManager()
554 if (mNotificationInterruptStateProvider.shouldBubbleUp(entry) in onEntryAdded()
562 mNotificationInterruptStateProvider.shouldBubbleUp(entry)); in onEntryUpdated()
578 boolean shouldBubbleUp = entry != null in onRankingUpdate()
579 ? mNotificationInterruptStateProvider.shouldBubbleUp(entry) in onRankingUpdate()
581 pendingOrActiveNotif.put(key, new Pair<>(bubbleEntry, shouldBubbleUp)); in onRankingUpdate()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbles.java187 void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp); in onEntryUpdated() argument
DBubbleController.java970 private void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() argument
972 boolean shouldBubble = shouldBubbleUp && canLaunchInTaskView(mContext, entry); in onEntryUpdated()
1006 boolean shouldBubbleUp = entryData.second; in onRankingUpdated()
1019 } else if (isActiveBubble && !shouldBubbleUp) { in onRankingUpdated()
1590 public void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() argument
1592 BubbleController.this.onEntryUpdated(entry, shouldBubbleUp); in onEntryUpdated()