Home
last modified time | relevance | path

Searched refs:velY (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/magnetictarget/
DMagnetizedObject.kt126 velY: Float, in <lambda>()
374 val velY = velocityTracker.yVelocity in <lambda>() constant
388 animateStuckToTarget(targetObjectIsInMagneticFieldOf, velX, velY, false, null) in <lambda>()
410 val velY = velocityTracker.yVelocity in <lambda>() constant
417 if (-velY > flingUnstuckFromTargetMinVelocity) { in <lambda>()
422 targetObjectIsStuckTo!!, velX, velY, wasFlungOut = true) in <lambda>()
436 isForcefulFlingTowardsTarget(target, ev.rawX, ev.rawY, velX, velY) in <lambda>()
445 animateStuckToTarget(flungToTarget, velX, velY, true) { in <lambda>()
484 velY: Float, in <lambda>()
507 .spring(yProperty, yProperty.getValue(underlyingObject) + yDiff, velY, in <lambda>()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
DPipDismissTargetHandler.java132 (target, velX, velY, flung, after) -> { in init() argument
134 mMotionHelper.animateIntoDismissTarget(target, velX, velY, flung, after); in init()
150 float velX, float velY, boolean wasFlungOut) { in init()
152 mMotionHelper.flingToSnapTarget(velX, velY, null /* endAction */); in init()
DPipMotionHelper.java298 float velX, float velY, in animateIntoDismissTarget() argument
323 .spring(FloatProperties.RECT_Y, destinationY, velY, mAnimateToDismissSpringConfig) in animateIntoDismissTarget()
400 void stashToEdge(float velX, float velY, @Nullable Runnable postBoundsUpdateCallback) { in stashToEdge() argument
401 velY = mPipBoundsState.getStashedState() == STASH_TYPE_NONE ? 0 : velY; in stashToEdge()
402 movetoTarget(velX, velY, postBoundsUpdateCallback, true /* isStash */); in stashToEdge()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DRelativeTouchListener.kt80 velY: Float in onDown()
DBubbleStackView.java421 float velX, float velY, boolean wasFlungOut) {
430 mExpandedAnimationController.getDraggedOutBubble(), velX, velY);
462 float velX, float velY, boolean wasFlungOut) {
466 mStackAnimationController.getStackPosition().x, velX, velY);
644 float viewInitialY, float dx, float dy, float velX, float velY) {
656 mExpandedAnimationController.snapBubbleBack(v, velX, velY);
666 viewInitialX + dx, velX, velY) <= 0;
715 float viewInitialY, float dx, float dy, float velX, float velY) {
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/
DExpandedAnimationController.java433 public void snapBubbleBack(View bubbleView, float velX, float velY) {
441 .withPositionStartVelocities(velX, velY)
DStackAnimationController.java352 public float flingStackThenSpringToEdge(float x, float velX, float velY) { in flingStackThenSpringToEdge() argument
388 mStackPosition.y, velY, in flingStackThenSpringToEdge()
413 velY, in flingStackThenSpringToEdge()
DPhysicsAnimationLayout.java879 public PhysicsPropertyAnimator withPositionStartVelocities(float velX, float velY) {
881 mPositionStartVelocities.put(DynamicAnimation.TRANSLATION_Y, velY);
/frameworks/base/core/java/com/android/internal/widget/
DRecyclerView.java4831 int velY = 0; in run() local
4833 velY = overscrollY < 0 ? -vel : overscrollY > 0 ? vel : 0; in run()
4837 absorbGlows(velX, velY); in run()
4840 && (velY != 0 || overscrollY == y || scroller.getFinalY() == 0)) { in run()