/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/animation/ |
D | BubbleBarViewAnimator.kt | 34 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/ |
D | BubbleBarViewAnimatorTest.kt | 62 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/ |
D | BubbleControllers.java | 28 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()
|
D | BubbleBarPinController.kt | 43 private lateinit var bubbleStashController: BubbleStashController in <lambda>() variable 51 bubbleStashController = bubbleControllers.bubbleStashController in <lambda>() 94 bottomMargin = -bubbleStashController.bubbleBarTranslationY.toInt() in <lambda>()
|
D | BubblePinController.kt | 43 private lateinit var bubbleStashController: BubbleStashController in <lambda>() variable 55 bubbleStashController = bubbleControllers.bubbleStashController in <lambda>() 106 -bubbleStashController.bubbleBarTranslationY.toInt() + in <lambda>()
|
D | BubbleStashedHandleViewController.java | 84 mBubbleStashController = bubbleControllers.bubbleStashController; in init()
|
D | BubbleBarViewController.java | 106 mBubbleStashController = bubbleControllers.bubbleStashController; in init()
|
D | BubbleBarController.java | 218 mBubbleStashController = bubbleControllers.bubbleStashController; in init()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ |
D | TaskbarInsetsController.kt | 134 controllers.bubbleControllers.get().bubbleStashController.touchableHeight in <lambda>() 142 controllers.bubbleControllers.get().bubbleStashController.isBubblesShowingOnHome in <lambda>() 418 if (!bubbleControllers.bubbleStashController.isBubblesShowingOnOverview) { in <lambda>()
|
D | TaskbarStashViaTouchController.kt | 119 (bubbleControllers == null || bubbleControllers.bubbleStashController.isStashed) && in onControllerInterceptTouchEvent()
|
D | TaskbarStashController.java | 523 if (willStash != controllers.bubbleStashController.isStashed()) { in updateAndAnimateTransientTaskbar() 528 controllers.bubbleStashController.stashBubbleBar(); in updateAndAnimateTransientTaskbar() 530 controllers.bubbleStashController.showBubbleBar(false /* expandBubbles */); in updateAndAnimateTransientTaskbar()
|
D | TaskbarLauncherStateController.java | 450 controllers.bubbleStashController.setBubblesShowingOnHome(onHome); in onStateChangeApplied() 451 controllers.bubbleStashController.setBubblesShowingOnOverview(onOverview); in onStateChangeApplied()
|
D | TaskbarUIController.java | 181 bubbleControllers.bubbleStashController.isEventOverStashHandle(ev)) in isEventOverBubbleBarStashHandle()
|
D | TaskbarActivityContext.java | 1371 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/ |
D | TaskbarUnstashInputConsumer.java | 324 if (controllers.bubbleStashController.isStashed()) { in isInBubbleBarArea()
|