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.java5459 private float mFlingVelocity; field in ViewRootImpl.SyntheticTouchNavigationHandler
5692 mFlingVelocity = -vx; in startFling()
5700 mFlingVelocity = vx; in startFling()
5708 mFlingVelocity = -vy; in startFling()
5716 mFlingVelocity = vy; in startFling()
5731 if (mFlingVelocity >= mConfigMinFlingVelocity) { in postFling()
5732 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000); in postFling()
5736 + mFlingVelocity + ", delay=" + delay in postFling()
5756 mFlingVelocity *= FLING_TICK_DECAY;