Home
last modified time | relevance | path

Searched refs:yVelocity (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
DSlidingDrawer.java435 float yVelocity = velocityTracker.getYVelocity(); in onTouchEvent() local
441 negative = yVelocity < 0; in onTouchEvent()
450 if (yVelocity < 0) { in onTouchEvent()
451 yVelocity = -yVelocity; in onTouchEvent()
453 if (yVelocity > mMaximumMinorVelocity) { in onTouchEvent()
454 yVelocity = mMaximumMinorVelocity; in onTouchEvent()
458 float velocity = (float) Math.hypot(xVelocity, yVelocity); in onTouchEvent()
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
DItemTouchHelper.java1212 final float yVelocity = VelocityTrackerCompat in checkHorizontalSwipe() local
1218 absXVelocity > Math.abs(yVelocity)) { in checkHorizontalSwipe()
1241 final float yVelocity = VelocityTrackerCompat in checkVerticalSwipe() local
1243 final int velDirFlag = yVelocity > 0f ? DOWN : UP; in checkVerticalSwipe()
1244 final float absYVelocity = Math.abs(yVelocity); in checkVerticalSwipe()