Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/animation/
DBubbleBarViewAnimator.kt34 private val bubbleStashController: BubbleStashController, in <lambda>() constant in com.android.launcher3.taskbar.bubbles.animation.BubbleBarViewAnimator
133 val offset = bubbleStashController.diffBetweenHandleAndBarCenters in <lambda>()
135 bubbleStashController.stashedHandleTranslationForNewBubbleAnimation in <lambda>()
140 val totalTranslationY = bubbleStashController.bubbleBarTranslationYForTaskbar + offset in <lambda>()
141 val animator = bubbleStashController.stashedHandlePhysicsAnimator in <lambda>()
173 bubbleStashController.updateTaskbarTouchRegion() in <lambda>()
184 bubbleStashController.updateTaskbarTouchRegion() in <lambda>()
200 bubbleStashController.updateTaskbarTouchRegion() in <lambda>()
221 val offset = bubbleStashController.diffBetweenHandleAndBarCenters in <lambda>()
223 bubbleStashController.stashedHandleTranslationForNewBubbleAnimation in <lambda>()
[all …]
/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/launcher3/taskbar/bubbles/animation/
DBubbleBarViewAnimatorTest.kt62 private lateinit var bubbleStashController: BubbleStashController variable in com.android.launcher3.taskbar.bubbles.animation.BubbleBarViewAnimatorTest
77 whenever(bubbleStashController.stashedHandlePhysicsAnimator).thenReturn(handleAnimator) in animateBubbleInForStashed()
80 BubbleBarViewAnimator(bubbleBarView, bubbleStashController, animatorScheduler) in animateBubbleInForStashed()
111 verify(bubbleStashController).stashBubbleBarImmediate() in animateBubbleInForStashed()
121 whenever(bubbleStashController.stashedHandlePhysicsAnimator).thenReturn(handleAnimator) in animateBubbleInForStashed_tapAnimatingBubble()
124 BubbleBarViewAnimator(bubbleBarView, bubbleStashController, animatorScheduler) in animateBubbleInForStashed_tapAnimatingBubble()
143 verify(bubbleStashController, atLeastOnce()).updateTaskbarTouchRegion() in animateBubbleInForStashed_tapAnimatingBubble()
164 whenever(bubbleStashController.stashedHandlePhysicsAnimator).thenReturn(handleAnimator) in animateBubbleInForStashed_touchTaskbarArea_whileShowing()
167 BubbleBarViewAnimator(bubbleBarView, bubbleStashController, animatorScheduler) in animateBubbleInForStashed_touchTaskbarArea_whileShowing()
189 verify(bubbleStashController).onNewBubbleAnimationInterrupted(any(), any()) in animateBubbleInForStashed_touchTaskbarArea_whileShowing()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/
DBubbleControllers.java28 public final BubbleStashController bubbleStashController; field in BubbleControllers
45 BubbleStashController bubbleStashController, in BubbleControllers() argument
53 this.bubbleStashController = bubbleStashController; in BubbleControllers()
71 bubbleStashController.init(taskbarControllers, this); in init()
DBubbleBarPinController.kt43 private lateinit var bubbleStashController: BubbleStashController in <lambda>() variable
51 bubbleStashController = bubbleControllers.bubbleStashController in <lambda>()
94 bottomMargin = -bubbleStashController.bubbleBarTranslationY.toInt() in <lambda>()
DBubblePinController.kt43 private lateinit var bubbleStashController: BubbleStashController in <lambda>() variable
55 bubbleStashController = bubbleControllers.bubbleStashController in <lambda>()
106 -bubbleStashController.bubbleBarTranslationY.toInt() + in <lambda>()
DBubbleStashedHandleViewController.java84 mBubbleStashController = bubbleControllers.bubbleStashController; in init()
DBubbleBarViewController.java106 mBubbleStashController = bubbleControllers.bubbleStashController; in init()
DBubbleBarController.java218 mBubbleStashController = bubbleControllers.bubbleStashController; in init()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarInsetsController.kt134 controllers.bubbleControllers.get().bubbleStashController.touchableHeight in <lambda>()
142 controllers.bubbleControllers.get().bubbleStashController.isBubblesShowingOnHome in <lambda>()
418 if (!bubbleControllers.bubbleStashController.isBubblesShowingOnOverview) { in <lambda>()
DTaskbarStashViaTouchController.kt119 (bubbleControllers == null || bubbleControllers.bubbleStashController.isStashed) && in onControllerInterceptTouchEvent()
DTaskbarStashController.java523 if (willStash != controllers.bubbleStashController.isStashed()) { in updateAndAnimateTransientTaskbar()
528 controllers.bubbleStashController.stashBubbleBar(); in updateAndAnimateTransientTaskbar()
530 controllers.bubbleStashController.showBubbleBar(false /* expandBubbles */); in updateAndAnimateTransientTaskbar()
DTaskbarLauncherStateController.java450 controllers.bubbleStashController.setBubblesShowingOnHome(onHome); in onStateChangeApplied()
451 controllers.bubbleStashController.setBubblesShowingOnOverview(onOverview); in onStateChangeApplied()
DTaskbarUIController.java181 bubbleControllers.bubbleStashController.isEventOverStashHandle(ev)) in isEventOverBubbleBarStashHandle()
DTaskbarActivityContext.java1371 controllers.bubbleStashController.showBubbleBar(/* expandBubbles= */ true); in onSwipeToOpenBubblebar()
1445 if (bubbleControllers.bubbleStashController.isStashed()) { in unstashBubbleBarIfStashed()
1446 bubbleControllers.bubbleStashController.showBubbleBar(false); in unstashBubbleBarIfStashed()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
DTaskbarUnstashInputConsumer.java324 if (controllers.bubbleStashController.isStashed()) { in isInBubbleBarArea()