Home
last modified time | relevance | path

Searched refs:setTranslationYForSwipe (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/launcher3/taskbar/bubbles/
DBubbleBarSwipeControllerTest.kt113 verify(bubbleStashedHandleViewController).setTranslationYForSwipe(dampedTranslation) in testViewsHaveDampedTranslationOnSwipe()
114 verify(bubbleBarViewController).setTranslationYForSwipe(dampedTranslation) in testViewsHaveDampedTranslationOnSwipe()
150 .setTranslationYForSwipe(handleSwipeTranslation.capture()) in testViewsTranslationResetOnFinish()
152 .setTranslationYForSwipe(barSwipeTranslation.capture()) in testViewsTranslationResetOnFinish()
273 verify(bubbleStashedHandleViewController, never()).setTranslationYForSwipe(any()) in swipeDown_stashedBar_swipeIgnored()
274 verify(bubbleBarViewController, never()).setTranslationYForSwipe(any()) in swipeDown_stashedBar_swipeIgnored()
291 verify(bubbleStashedHandleViewController, never()).setTranslationYForSwipe(any()) in swipe_expandedBar_swipeIgnored()
292 verify(bubbleBarViewController, never()).setTranslationYForSwipe(any()) in swipe_expandedBar_swipeIgnored()
360 verify(bubbleStashedHandleViewController, never()).setTranslationYForSwipe(any()) in swipeDown_collapsedBar_swipeIgnored()
361 verify(bubbleBarViewController, never()).setTranslationYForSwipe(any()) in swipeDown_collapsedBar_swipeIgnored()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarTranslationController.java92 mControllers.stashedHandleViewController.setTranslationYForSwipe(transY); in updateTranslationYForSwipe()
93 mControllers.taskbarViewController.setTranslationYForSwipe(transY); in updateTranslationYForSwipe()
94 mControllers.taskbarDragLayerController.setTranslationYForSwipe(transY); in updateTranslationYForSwipe()
96 controllers.bubbleBarViewController.setTranslationYForSwipe(transY); in updateTranslationYForSwipe()
98 controller -> controller.setTranslationYForSwipe(transY)); in updateTranslationYForSwipe()
DTaskbarDragLayer.java246 mBackgroundRenderer.setTranslationYForSwipe(translationY); in setBackgroundTranslationYForSwipe()
DTaskbarDragLayerController.java239 public void setTranslationYForSwipe(float transY) { in setTranslationYForSwipe() method in TaskbarDragLayerController
DStashedHandleViewController.java291 protected void setTranslationYForSwipe(float transY) { in setTranslationYForSwipe() method in StashedHandleViewController
DTaskbarViewController.java612 public void setTranslationYForSwipe(float transY) { in setTranslationYForSwipe() method in TaskbarViewController
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/
DBubbleBarSwipeController.kt164 bubbleStashedHandleViewController?.setTranslationYForSwipe(dampedSwipe) in onSwipeUpdate()
165 bubbleBarViewController.setTranslationYForSwipe(dampedSwipe) in onSwipeUpdate()
DBubbleStashedHandleViewController.java262 public void setTranslationYForSwipe(float transY) { in setTranslationYForSwipe() method in BubbleStashedHandleViewController
DBubbleBarViewController.java967 public void setTranslationYForSwipe(float transY) {
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/stashing/
DTransientBubbleStashController.kt203 bubbleStashedHandleViewController?.setTranslationYForSwipe(0f) in <lambda>()
221 bubbleStashedHandleViewController?.setTranslationYForSwipe(0f) in <lambda>()
344 bubbleStashedHandleViewController?.setTranslationYForSwipe(translationY) in <lambda>()
/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/launcher3/taskbar/bubbles/stashing/
DTransientBubbleStashControllerTest.kt617 whenever(bubbleStashedHandleViewController.setTranslationYForSwipe(any())).thenAnswer { in <lambda>()