Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleData.java87 @Nullable Bubble unsuppressedBubble; field in BubbleData.Update
111 || unsuppressedBubble != null in anythingChanged()
148 bubbleBarUpdate.unsupressedBubbleKey = unsuppressedBubble != null in toBubbleBarUpdate()
149 ? unsuppressedBubble.getKey() in toBubbleBarUpdate()
774 mStateChange.unsuppressedBubble = bubble; in doUnsuppress()
867 Bubble unsuppressedBubble = mSuppressedBubbles.remove(locusId); in onLocusVisibilityChanged() local
868 if (unsuppressedBubble != null) { in onLocusVisibilityChanged()
869 doUnsuppress(unsuppressedBubble); in onLocusVisibilityChanged()
DBubbleController.java1994 update.unsuppressedBubble != null ? update.unsuppressedBubble.getKey() : "null",
2065 if (update.unsuppressedBubble != null) {
2066 mBubbleViewCallback.suppressionChanged(update.unsuppressedBubble, false);
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleDataTest.java1353 assertWithMessage("unsuppressedBubble").that(update.unsuppressedBubble).isEqualTo(expected); in assertBubbleUnsuppressed()