Home
last modified time | relevance | path

Searched refs:mFlingVelocity (Results 1 – 2 of 2) sorted by relevance

/frameworks/ex/widget/java/com/android/ex/widget/
DStaggeredGridView.java119 private int mFlingVelocity; field in StaggeredGridView
211 mFlingVelocity = vc.getScaledMinimumFlingVelocity(); in StaggeredGridView()
367 if (Math.abs(velocity) > mFlingVelocity) { // TODO in onTouchEvent()
/frameworks/base/core/java/android/view/
DViewRootImpl.java5088 private float mFlingVelocity; field in ViewRootImpl.SyntheticTouchNavigationHandler
5321 mFlingVelocity = -vx; in startFling()
5329 mFlingVelocity = vx; in startFling()
5337 mFlingVelocity = -vy; in startFling()
5345 mFlingVelocity = vy; in startFling()
5360 if (mFlingVelocity >= mConfigMinFlingVelocity) { in postFling()
5361 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000); in postFling()
5365 + mFlingVelocity + ", delay=" + delay in postFling()
5385 mFlingVelocity *= FLING_TICK_DECAY;