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.java4826 private float mFlingVelocity; field in ViewRootImpl.SyntheticTouchNavigationHandler
5059 mFlingVelocity = -vx; in startFling()
5067 mFlingVelocity = vx; in startFling()
5075 mFlingVelocity = -vy; in startFling()
5083 mFlingVelocity = vy; in startFling()
5098 if (mFlingVelocity >= mConfigMinFlingVelocity) { in postFling()
5099 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000); in postFling()
5103 + mFlingVelocity + ", delay=" + delay in postFling()
5123 mFlingVelocity *= FLING_TICK_DECAY;