Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DDifferentialMotionFlingHelper.java177 float scaledVelocity = in onMotionEvent() local
180 float velocityDirection = Math.signum(scaledVelocity); in onMotionEvent()
189 if (Math.abs(scaledVelocity) < mFlingVelocityThresholds[0]) { in onMotionEvent()
198 scaledVelocity = in onMotionEvent()
201 Math.min(scaledVelocity, mFlingVelocityThresholds[1])); in onMotionEvent()
203 boolean flung = mTarget.startDifferentialMotionFling(scaledVelocity); in onMotionEvent()
204 mLastFlingVelocity = flung ? scaledVelocity : 0; in onMotionEvent()