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

/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java127 private float mMaxVelocity; field in class:ViewDragHelper
390 mMaxVelocity = vc.getScaledMaximumFlingVelocity();
605 xvel = clampMag(xvel, (int) mMinVelocity, (int) mMaxVelocity);
606 yvel = clampMag(yvel, (int) mMinVelocity, (int) mMaxVelocity);
1404 mVelocityTracker.computeCurrentVelocity(1000, mMaxVelocity);
1407 mMinVelocity, mMaxVelocity);
1410 mMinVelocity, mMaxVelocity);

Completed in 225 milliseconds