Searched refs:shouldBubbleUp (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
D | BubblesManager.java | 322 && shouldBubbleUp(entry) in BubblesManager() 479 if (shouldBubbleUp(entry) && entry.isBubble()) { in onEntryAdded() 485 mBubbles.onEntryUpdated(notifToBubbleEntry(entry), shouldBubbleUp(entry), fromSystem); in onEntryUpdated() 499 boolean shouldBubbleUp = entry != null ? shouldBubbleUp(entry) : false; in onRankingUpdate() 500 pendingOrActiveNotif.put(key, new Pair<>(bubbleEntry, shouldBubbleUp)); in onRankingUpdate() 689 private boolean shouldBubbleUp(NotificationEntry e) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/ |
D | NotificationInterruptStateProvider.java | 151 boolean shouldBubbleUp(NotificationEntry entry); in shouldBubbleUp() method
|
D | NotificationInterruptStateProviderWrapper.kt | 113 wrapped.shouldBubbleUp(entry).let { DecisionImpl.of(it) } in makeAndLogBubbleDecision()
|
D | NotificationInterruptStateProviderImpl.java | 196 public boolean shouldBubbleUp(NotificationEntry entry) { in shouldBubbleUp() method in NotificationInterruptStateProviderImpl
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/ |
D | NotificationInterruptStateProviderImplTest.java | 956 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isTrue(); in testShouldBubbleUp() 966 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(bubble)).isTrue(); in testShouldBubbleUp_notifInGroupWithOnlySummaryAlerts() 979 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldNotBubbleUp_notAllowedToBubble() 992 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldNotBubbleUp_notABubble() 1006 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(entry)).isFalse(); in shouldNotBubbleUp_invalidMetadata() 1014 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_suppressedInterruptions() 1023 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_filteredOut() 1028 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createSuspendedBubble())) in shouldNotBubbleUp_suspended()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | Bubbles.java | 210 void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp, boolean fromSystem); in onEntryUpdated() argument
|
D | BubbleController.java | 1710 public void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp, boolean fromSystem) { in onEntryUpdated() argument 1715 boolean shouldBubble = shouldBubbleUp && canLaunchInTaskView(mContext, entry); in onEntryUpdated() 1750 boolean shouldBubbleUp = entryData.second; in onRankingUpdated() 1757 shouldBubbleUp = false; in onRankingUpdated() 1766 } else if (isActiveOrInOverflow && !shouldBubbleUp) { in onRankingUpdated() 1776 onEntryUpdated(entry, shouldBubbleUp, /* fromSystem= */ true); in onRankingUpdated() 2692 public void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp, boolean fromSystem) { in onEntryUpdated() argument 2694 BubbleController.this.onEntryUpdated(entry, shouldBubbleUp, fromSystem); in onEntryUpdated()
|