Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
H A 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()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
H A DBubblesManager.java278 && mNotificationInterruptStateProvider.shouldBubbleUp(entry) in BubblesManager()
558 if (mNotificationInterruptStateProvider.shouldBubbleUp(entry) in onEntryAdded()
566 mNotificationInterruptStateProvider.shouldBubbleUp(entry)); in onEntryUpdated()
582 boolean shouldBubbleUp = entry != null in onRankingUpdate()
583 ? mNotificationInterruptStateProvider.shouldBubbleUp(entry) in onRankingUpdate()
585 pendingOrActiveNotif.put(key, new Pair<>(bubbleEntry, shouldBubbleUp)); in onRankingUpdate()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
H A DNotificationInterruptStateProvider.java45 boolean shouldBubbleUp(NotificationEntry entry); in shouldBubbleUp() method
H A DNotificationInterruptStateProviderImpl.java131 public boolean shouldBubbleUp(NotificationEntry entry) { in shouldBubbleUp() method in NotificationInterruptStateProviderImpl
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleController.java981 private void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() argument
983 boolean shouldBubble = shouldBubbleUp && canLaunchInTaskView(mContext, entry); in onEntryUpdated()
1017 boolean shouldBubbleUp = entryData.second; in onRankingUpdated()
1030 } else if (isActiveBubble && (!shouldBubbleUp || entry.getRanking().isSuspended())) { in onRankingUpdated()
1040 onEntryUpdated(entry, shouldBubbleUp && !entry.getRanking().isSuspended()); in onRankingUpdated()
1598 public void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() argument
1600 BubbleController.this.onEntryUpdated(entry, shouldBubbleUp); in onEntryUpdated()
H A DBubbles.java176 void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp); in onEntryUpdated() argument