Searched defs:mMinFlingVelocity (Results 1 - 9 of 9) sorted by last modified time

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSwitchCompat.java137 private int mMinFlingVelocity; field in class:SwitchCompat
284 mMinFlingVelocity = config.getScaledMinimumFlingVelocity();
1004 if (Math.abs(xvel) > mMinFlingVelocity) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java450 private final int mMinFlingVelocity; field in class:RecyclerView
579 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
2105 if (!canScrollHorizontal || Math.abs(velocityX) < mMinFlingVelocity) {
2108 if (!canScrollVertical || Math.abs(velocityY) < mMinFlingVelocity) {
2168 return mMinFlingVelocity;
/frameworks/support/wear/src/android/support/wear/widget/
H A DSwipeDismissLayout.java109 private int mMinFlingVelocity; field in class:SwipeDismissLayout
153 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
406 || mVelocityTracker.getXVelocity() >= mMinFlingVelocity) {
413 if (mVelocityTracker.getXVelocity() < -mMinFlingVelocity) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardAffordanceHelper.java57 private int mMinFlingVelocity; field in class:KeyguardAffordanceHelper
97 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity();
330 snapBack |= Math.abs(vel) > mMinFlingVelocity && velIsInWrongDirection;
H A DNavigationBarGestureHelper.java74 private final int mMinFlingVelocity; field in class:NavigationBarGestureHelper
89 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity();
289 boolean isValidFling = absVelX > mMinFlingVelocity &&
/frameworks/base/core/java/android/widget/
H A DSwitch.java120 private int mMinFlingVelocity; field in class:Switch
290 mMinFlingVelocity = config.getScaledMinimumFlingVelocity();
1023 if (Math.abs(xvel) > mMinFlingVelocity) {
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java430 private final int mMinFlingVelocity; field in class:RecyclerView
550 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
2003 if (!canScrollHorizontal || Math.abs(velocityX) < mMinFlingVelocity) {
2006 if (!canScrollVertical || Math.abs(velocityY) < mMinFlingVelocity) {
2057 return mMinFlingVelocity;
H A DResolverDrawerLayout.java90 private final float mMinFlingVelocity; field in class:ResolverDrawerLayout
147 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
374 if (Math.abs(yvel) > mMinFlingVelocity) {
659 if (velocityY > mMinFlingVelocity && mCollapseOffset != 0) {
668 if (!consumed && Math.abs(velocityY) > mMinFlingVelocity) {
H A DSwipeDismissLayout.java72 private int mMinFlingVelocity; field in class:SwipeDismissLayout
114 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
361 * xVelocity / mMinFlingVelocity // scale x-velocity with fling velocity
366 || xVelocity >= mMinFlingVelocity) {
373 if (xVelocity < -mMinFlingVelocity) {

Completed in 243 milliseconds