Searched refs:mMaximumFlingVelocity (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewConfiguration.java211 private final int mMaximumFlingVelocity; field in class:ViewConfiguration
237 mMaximumFlingVelocity = MAXIMUM_FLING_VELOCITY;
276 mMaximumFlingVelocity = (int) (density * MAXIMUM_FLING_VELOCITY + 0.5f);
595 return mMaximumFlingVelocity;
H A DGestureDetector.java200 private int mMaximumFlingVelocity; field in class:GestureDetector
391 mMaximumFlingVelocity = ViewConfiguration.getMaximumFlingVelocity();
398 mMaximumFlingVelocity = configuration.getScaledMaximumFlingVelocity();
488 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
594 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
/frameworks/support/v4/java/android/support/v4/view/
H A DGestureDetectorCompat.java60 private int mMaximumFlingVelocity; field in class:GestureDetectorCompat.GestureDetectorCompatImplBase
173 mMaximumFlingVelocity = configuration.getScaledMaximumFlingVelocity();
258 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
364 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java394 private int mMaximumFlingVelocity; field in class:NumberPicker
692 mMaximumFlingVelocity = configuration.getScaledMaximumFlingVelocity()
881 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);

Completed in 79 milliseconds