Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java268 private TestableBubbleController mBubbleController; field in BubblesTest
485 mBubbleController = new TestableBubbleController( in setUp()
512 mBubbleController.setExpandListener(mBubbleExpandListener); in setUp()
513 spyOn(mBubbleController); in setUp()
517 mBubbleController.asBubbles(), in setUp()
571 mBubbleController.removeBubble(bubbles.get(i).getKey(), in tearDown()
578 mBubbleController.updateBubble(mBubbleEntry); in bubblesHiddenWhileDreaming()
579 assertTrue(mBubbleController.hasBubbles()); in bubblesHiddenWhileDreaming()
580 assertThat(mBubbleController.getStackView().getVisibility()).isEqualTo(View.VISIBLE); in bubblesHiddenWhileDreaming()
589 assertThat(mBubbleController.getStackView().getVisibility()).isEqualTo(View.INVISIBLE); in bubblesHiddenWhileDreaming()
[all …]
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubblesTransitionObserverTest.java55 private BubbleController mBubbleController; field in BubblesTransitionObserverTest
76 mTransitionObserver = new BubblesTransitionObserver(mBubbleController, mBubbleData); in setUp()
84 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_open_collapsesStack()
98 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_toFront_collapsesStack()
112 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_noTaskInfo_skip()
127 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_noTaskId_skip()
143 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_notOpening_skip()
163 when(mBubbleController.isStackAnimating()).thenReturn(true); // Stack is animating in testOnTransitionReady_stackAnimating_skip()
177 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_stackNotExpanded_skip()
191 when(mBubbleController.isStackAnimating()).thenReturn(false); in testOnTransitionReady_noSelectedBubble_skip()
[all …]
DBubbleOverflowTest.java50 private BubbleController mBubbleController; field in BubbleOverflowTest
58 mExpandedViewManager = BubbleExpandedViewManager.fromBubbleController(mBubbleController); in setUp()
61 when(mBubbleController.getPositioner()).thenReturn(mPositioner); in setUp()
62 when(mBubbleController.getStackView()).thenReturn(mBubbleStackView); in setUp()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarLayerView.java69 private final BubbleController mBubbleController; field in BubbleBarLayerView
98 mBubbleController = controller; in BubbleBarLayerView()
100 mPositioner = mBubbleController.getPositioner(); in BubbleBarLayerView()
126 mBubbleController.animateBubbleBarLocation(bubbleBarLocation); in BubbleBarLayerView()
131 mBubbleController.setBubbleBarLocation(location); in BubbleBarLayerView()
226 mBubbleController.dismissBubble(mExpandedBubble.getKey(), DISMISS_USER_GESTURE); in showExpandedView()
245 mBubbleController.getSysuiProxy().onStackExpandChanged(true); in showExpandedView()
302 mBubbleController.onAllBubblesAnimatedOut(); in collapse()
310 mBubbleController.getSysuiProxy().onStackExpandChanged(false); in collapse()
325 mBubbleController.expandStackWithSelectedBubble(); in showUserEducation()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubblesTransitionObserver.java36 private BubbleController mBubbleController; field in BubblesTransitionObserver
41 mBubbleController = controller; in BubblesTransitionObserver()
55 || mBubbleController.isStackAnimating() in onTransitionReady()