Searched refs:shouldBubbleUp (Results 1 – 6 of 6) sorted by relevance
408 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()
278 && 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()
45 boolean shouldBubbleUp(NotificationEntry entry); in shouldBubbleUp() method
131 public boolean shouldBubbleUp(NotificationEntry entry) { in shouldBubbleUp() method in NotificationInterruptStateProviderImpl
981 private void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() argument983 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() argument1600 BubbleController.this.onEntryUpdated(entry, shouldBubbleUp); in onEntryUpdated()
176 void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp); in onEntryUpdated() argument