Home
last modified time | relevance | path

Searched refs:mMinFlingVelocity (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardAffordanceHelper.java56 private int mMinFlingVelocity; field in KeyguardAffordanceHelper
95 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity(); in initDimens()
326 snapBack |= Math.abs(vel) > mMinFlingVelocity && velIsInWrongDirection; in flingWithCurrentVelocity()
/frameworks/base/core/java/com/android/internal/widget/
DResolverDrawerLayout.java105 private final float mMinFlingVelocity; field in ResolverDrawerLayout
169 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in ResolverDrawerLayout()
453 if (Math.abs(yvel) > mMinFlingVelocity) { in onTouchEvent()
787 if (!getShowAtTop() && velocityY > mMinFlingVelocity && mCollapseOffset != 0) {
796 if (!consumed && Math.abs(velocityY) > mMinFlingVelocity) {
DRecyclerView.java429 private final int mMinFlingVelocity; field in RecyclerView
549 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in RecyclerView()
2002 if (!canScrollHorizontal || Math.abs(velocityX) < mMinFlingVelocity) { in fling()
2005 if (!canScrollVertical || Math.abs(velocityY) < mMinFlingVelocity) { in fling()
2070 return mMinFlingVelocity; in getMinFlingVelocity()
/frameworks/base/core/java/android/widget/
DSwitch.java127 private int mMinFlingVelocity; field in Switch
308 mMinFlingVelocity = config.getScaledMinimumFlingVelocity(); in Switch()
1120 if (Math.abs(xvel) > mMinFlingVelocity) { in stopDrag()