Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleData.java521 for (Bubble matchingBubble : matchingBubbles) { in performActionOnBubblesMatching()
522 action.accept(matchingBubble); in performActionOnBubblesMatching()
649 Bubble matchingBubble = getBubbleInStackWithLocusId(locusId); in onLocusVisibilityChanged() local
651 if (visible && (matchingBubble == null || matchingBubble.getTaskId() != taskId)) { in onLocusVisibilityChanged()
656 if (matchingBubble == null) { in onLocusVisibilityChanged()
660 if (visible && !isAlreadySuppressed && matchingBubble.isSuppressable() in onLocusVisibilityChanged()
661 && taskId != matchingBubble.getTaskId()) { in onLocusVisibilityChanged()
662 mSuppressedBubbles.put(locusId, matchingBubble); in onLocusVisibilityChanged()
663 matchingBubble.setSuppressBubble(true); in onLocusVisibilityChanged()
664 mStateChange.suppressedBubble = matchingBubble; in onLocusVisibilityChanged()