Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleExpandedViewManager.kt22 val overflowBubbles: List<Bubble> constant
43 override val overflowBubbles: List<Bubble> in setOverflowListener() constant
44 get() = controller.overflowBubbles in setOverflowListener()
DBubbleData.java94 final List<Bubble> overflowBubbles; field in BubbleData.Update
98 overflowBubbles = Collections.unmodifiableList(overflow); in Update()
163 bubbleBarUpdate.showOverflow = !overflowBubbles.isEmpty(); in toBubbleBarUpdate()
DBubbleController.java1786 List<Bubble> overflowBubbles = new ArrayList<>(mBubbleData.getOverflowBubbles()); in onNotificationChannelModified() local
1787 for (int i = 0; i < overflowBubbles.size(); i++) { in onNotificationChannelModified()
1788 Bubble b = overflowBubbles.get(i); in onNotificationChannelModified()
2003 mBubbleViewCallback.bubbleOverflowChanged(!update.overflowBubbles.isEmpty());
2522 mTmpBubbles.addAll(update.overflowBubbles); in update()
/frameworks/base/libs/WindowManager/Shell/multivalentTests/src/com/android/wm/shell/bubbles/
DBubbleStackViewTest.kt259 assertThat(bubbleData.overflowBubbles).isEmpty() in <lambda>()
272 assertThat(bubbleData.overflowBubbles).isNotEmpty() in <lambda>()
304 assertThat(bubbleData.overflowBubbles).isEmpty() in <lambda>()
439 override val overflowBubbles: List<Bubble> in <lambda>() constant in com.android.wm.shell.bubbles.BubbleStackViewTest.FakeBubbleExpandedViewManager
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleDataTest.java1338 assertThat(update.overflowBubbles).isEqualTo(bubbles); in assertOverflowChangedTo()