Home
last modified time | relevance | path

Searched refs:xVelocity (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
DSlidingDrawer.java441 float xVelocity = velocityTracker.getXVelocity(); in onTouchEvent() local
447 if (xVelocity < 0) { in onTouchEvent()
448 xVelocity = -xVelocity; in onTouchEvent()
450 if (xVelocity > mMaximumMinorVelocity) { in onTouchEvent()
451 xVelocity = mMaximumMinorVelocity; in onTouchEvent()
454 negative = xVelocity < 0; in onTouchEvent()
463 float velocity = (float) Math.hypot(xVelocity, yVelocity); in onTouchEvent()
/frameworks/base/core/java/com/android/internal/widget/
DSwipeDismissLayout.java350 float xVelocity = mVelocityTracker.getXVelocity();
354 xVelocity = deltaX / ((ev.getEventTime() - ev.getDownTime()) / 1000);
361 * xVelocity / mMinFlingVelocity // scale x-velocity with fling velocity
366 || xVelocity >= mMinFlingVelocity) {
373 if (xVelocity < -mMinFlingVelocity) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarEdgePanel.java650 float xVelocity = mVelocityTracker.getXVelocity(); in handleMoveEvent() local
652 float velocity = MathUtils.mag(xVelocity, yVelocity); in handleMoveEvent()
654 ARROW_MAX_ANGLE_SPEED_OFFSET_DEGREES) * Math.signum(xVelocity); in handleMoveEvent()
/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchHelper.java1203 final float xVelocity = mVelocityTracker.getXVelocity(mActivePointerId); in checkHorizontalSwipe() local
1205 final int velDirFlag = xVelocity > 0f ? RIGHT : LEFT; in checkHorizontalSwipe()
1206 final float absXVelocity = Math.abs(xVelocity); in checkHorizontalSwipe()
1230 final float xVelocity = mVelocityTracker.getXVelocity(mActivePointerId); in checkVerticalSwipe() local
1236 && absYVelocity > Math.abs(xVelocity)) { in checkVerticalSwipe()