Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/magnetictarget/
DMagnetizedObject.kt126 velY: Float, in <lambda>()
380 val velY = velocityTracker.yVelocity in <lambda>() constant
394 animateStuckToTarget(targetObjectIsInMagneticFieldOf, velX, velY, false, null) in <lambda>()
416 val velY = velocityTracker.yVelocity in <lambda>() constant
423 if (-velY > flingUnstuckFromTargetMinVelocity) { in <lambda>()
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>()
491 velY: Float, in <lambda>()
514 .spring(yProperty, yProperty.getValue(underlyingObject) + yDiff, velY, 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
297 .spring(FloatProperties.RECT_Y, destinationY, velY, mAnimateToDismissSpringConfig) in animateIntoDismissTarget()
383 void stashToEdge(float velX, float velY, @Nullable Runnable postBoundsUpdateCallback) { in stashToEdge() argument
384 velY = mPipBoundsState.getStashedState() == STASH_TYPE_NONE ? 0 : velY; in stashToEdge()
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
305 .spring(FloatProperties.RECT_Y, destinationY, velY, mAnimateToDismissSpringConfig) in animateIntoDismissTarget()
391 void stashToEdge(float velX, float velY, @Nullable Runnable postBoundsUpdateCallback) { in stashToEdge() argument
392 velY = mPipBoundsState.getStashedState() == STASH_TYPE_NONE ? 0 : velY; in stashToEdge()
393 movetoTarget(velX, velY, postBoundsUpdateCallback, true /* isStash */); in stashToEdge()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarExpandedViewDragController.kt126 velY: Float in <lambda>()
160 velY: Float, in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubblesNavBarMotionEventHandler.java167 void onUp(float velX, float velY); in onUp() argument
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 …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/
DRelativeTouchListener.kt78 velY: 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/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/
DExpandedAnimationController.java464 public void snapBubbleBack(View bubbleView, float velX, float velY) {
476 .withPositionStartVelocities(velX, velY)
DStackAnimationController.java342 public float flingStackThenSpringToEdge(float x, float velX, float velY) { in flingStackThenSpringToEdge() argument
378 mStackPosition.y, velY, in flingStackThenSpringToEdge()
403 velY, in flingStackThenSpringToEdge()
DPhysicsAnimationLayout.java919 public PhysicsPropertyAnimator withPositionStartVelocities(float velX, float velY) {
921 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()