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

/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java119 private int mFlingVelocity; field in class:StaggeredGridView
211 mFlingVelocity = vc.getScaledMinimumFlingVelocity();
367 if (Math.abs(velocity) > mFlingVelocity) { // TODO
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4719 private float mFlingVelocity; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
4952 mFlingVelocity = -vx;
4960 mFlingVelocity = vx;
4968 mFlingVelocity = -vy;
4976 mFlingVelocity = vy;
4991 if (mFlingVelocity >= mConfigMinFlingVelocity) {
4992 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000);
4996 + mFlingVelocity + ", delay=" + delay
5016 mFlingVelocity *= FLING_TICK_DECAY;

Completed in 909 milliseconds