Searched refs: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.java5089 private float mFlingVelocity; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
5322 mFlingVelocity = -vx;
5330 mFlingVelocity = vx;
5338 mFlingVelocity = -vy;
5346 mFlingVelocity = vy;
5361 if (mFlingVelocity >= mConfigMinFlingVelocity) {
5362 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000);
5366 + mFlingVelocity + ", delay=" + delay
5386 mFlingVelocity *= FLING_TICK_DECAY;

Completed in 60 milliseconds