Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DDifferentialMotionFlingHelper.java66 private final int[] mFlingVelocityThresholds = new int[] {Integer.MAX_VALUE, 0}; field in DifferentialMotionFlingHelper
170 if (mFlingVelocityThresholds[0] == Integer.MAX_VALUE) { in onMotionEvent()
189 if (Math.abs(scaledVelocity) < mFlingVelocityThresholds[0]) { in onMotionEvent()
200 -mFlingVelocityThresholds[1], in onMotionEvent()
201 Math.min(scaledVelocity, mFlingVelocityThresholds[1])); in onMotionEvent()
218 mContext, mFlingVelocityThresholds, event, axis); in calculateFlingVelocityThresholds()