Home
last modified time | relevance | path

Searched refs:velX (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/magnetictarget/
DMagnetizedObject.kt125 velX: Float, in <lambda>()
379 val velX = velocityTracker.xVelocity in <lambda>() constant
385 if (objectNewlyStuckToTarget && abs(velX) > stickToTargetMaxXVelocity) { in <lambda>()
394 animateStuckToTarget(targetObjectIsInMagneticFieldOf, velX, velY, false, null) in <lambda>()
415 val velX = velocityTracker.xVelocity in <lambda>() constant
429 velX, velY, wasFlungOut = true) in <lambda>()
443 isForcefulFlingTowardsTarget(target, ev.rawX, ev.rawY, velX, velY) in <lambda>()
452 animateStuckToTarget(flungToTarget, velX, velY, true) { in <lambda>()
490 velX: Float, in <lambda>()
512 .spring(xProperty, xProperty.getValue(underlyingObject) + xDiff, velX, in <lambda>()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip2/phone/
DPipDismissTargetHandler.java126 (target, velX, velY, flung, after) -> { in init() argument
128 mMotionHelper.animateIntoDismissTarget(target, velX, velY, flung, after); in init()
146 float velX, float velY, boolean wasFlungOut) { in init()
148 mMotionHelper.flingToSnapTarget(velX, velY, null /* endAction */); in init()
DPipMotionHelper.java272 float velX, float velY, in animateIntoDismissTarget() argument
296 .spring(FloatProperties.RECT_X, destinationX, velX, mAnimateToDismissSpringConfig) in animateIntoDismissTarget()
383 void stashToEdge(float velX, float velY, @Nullable Runnable postBoundsUpdateCallback) { in stashToEdge() argument
385 movetoTarget(velX, velY, postBoundsUpdateCallback, true /* isStash */); in stashToEdge()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
DPipDismissTargetHandler.java126 (target, velX, velY, flung, after) -> { in init() argument
128 mMotionHelper.animateIntoDismissTarget(target, velX, velY, flung, after); in init()
146 float velX, float velY, boolean wasFlungOut) { in init()
148 mMotionHelper.flingToSnapTarget(velX, velY, null /* endAction */); in init()
DPipMotionHelper.java280 float velX, float velY, in animateIntoDismissTarget() argument
304 .spring(FloatProperties.RECT_X, destinationX, velX, mAnimateToDismissSpringConfig) in animateIntoDismissTarget()
391 void stashToEdge(float velX, float velY, @Nullable Runnable postBoundsUpdateCallback) { in stashToEdge() argument
393 movetoTarget(velX, velY, postBoundsUpdateCallback, true /* isStash */); in stashToEdge()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarExpandedViewDragController.kt125 velX: Float, in <lambda>()
159 velX: Float, in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/
DStackAnimationController.java342 public float flingStackThenSpringToEdge(float x, float velX, float velY) { in flingStackThenSpringToEdge() argument
346 ? velX < ESCAPE_VELOCITY in flingStackThenSpringToEdge()
347 : velX < -ESCAPE_VELOCITY; in flingStackThenSpringToEdge()
387 ? Math.min(minimumVelocityToReachEdge, velX) in flingStackThenSpringToEdge()
388 : Math.max(minimumVelocityToReachEdge, velX); in flingStackThenSpringToEdge()
DExpandedAnimationController.java464 public void snapBubbleBack(View bubbleView, float velX, float velY) {
476 .withPositionStartVelocities(velX, velY)
DPhysicsAnimationLayout.java919 public PhysicsPropertyAnimator withPositionStartVelocities(float velX, float velY) {
920 mPositionStartVelocities.put(DynamicAnimation.TRANSLATION_X, velX);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleStackView.java475 float velX, float velY, boolean wasFlungOut) {
482 mExpandedAnimationController.snapBubbleBack(view, velX, velY);
520 float velX, float velY, boolean wasFlungOut) {
524 mStackAnimationController.getStackPosition().x, velX, velY);
702 float viewInitialY, float dx, float dy, float velX, float velY) {
716 mExpandedAnimationController.snapBubbleBack(v, velX, velY);
726 viewInitialX + dx, velX, velY) <= 0;
767 float viewInitialY, float dx, float dy, float velX, float velY) {
769 mSwipeUpListener.onUp(velX, velY);
803 public void onUp(float velX, float velY) {
[all …]
DBubblesNavBarMotionEventHandler.java167 void onUp(float velX, float velY); in onUp() argument
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/
DRelativeTouchListener.kt77 velX: Float, in onDown()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/floatingmenu/
DDragToInteractAnimationControllerTest.java92 @NonNull MagnetizedObject<?> draggedObject, float velX, float velY, in setUp()
/frameworks/base/core/java/com/android/internal/widget/
DRecyclerView.java4826 int velX = 0; in run() local
4828 velX = overscrollX < 0 ? -vel : overscrollX > 0 ? vel : 0; in run()
4837 absorbGlows(velX, velY); in run()
4839 if ((velX != 0 || overscrollX == x || scroller.getFinalX() == 0) in run()