Searched defs:mMinimumFlingVelocity (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v4/java/android/support/v4/view/
H A DGestureDetectorCompat.java59 private int mMinimumFlingVelocity; field in class:GestureDetectorCompat.GestureDetectorCompatImplBase
177 mMinimumFlingVelocity = configuration.getScaledMinimumFlingVelocity();
378 if ((Math.abs(velocityY) > mMinimumFlingVelocity)
379 || (Math.abs(velocityX) > mMinimumFlingVelocity)){
/frameworks/base/core/java/android/view/
H A DGestureDetector.java198 private int mMinimumFlingVelocity; field in class:GestureDetector
396 mMinimumFlingVelocity = ViewConfiguration.getMinimumFlingVelocity();
403 mMinimumFlingVelocity = configuration.getScaledMinimumFlingVelocity();
608 if ((Math.abs(velocityY) > mMinimumFlingVelocity)
609 || (Math.abs(velocityX) > mMinimumFlingVelocity)){
H A DViewConfiguration.java225 private final int mMinimumFlingVelocity; field in class:ViewConfiguration
252 mMinimumFlingVelocity = MINIMUM_FLING_VELOCITY;
343 mMinimumFlingVelocity = res.getDimensionPixelSize(
630 return mMinimumFlingVelocity;
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java392 private int mMinimumFlingVelocity; field in class:NumberPicker
730 mMinimumFlingVelocity = configuration.getScaledMinimumFlingVelocity();
922 if (Math.abs(initialVelocity) > mMinimumFlingVelocity) {

Completed in 531 milliseconds