Searched refs:mMinFlingVelocity (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarViewTaskSwitchHelper.java35 private final int mMinFlingVelocity; field in class:NavigationBarViewTaskSwitchHelper
43 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity();
96 boolean isValidFling = absVelX > mMinFlingVelocity &&
H A DKeyguardAffordanceHelper.java57 private int mMinFlingVelocity; field in class:KeyguardAffordanceHelper
98 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity();
329 snapBack |= Math.abs(vel) > mMinFlingVelocity && velIsInWrongDirection;
/frameworks/base/core/java/com/android/internal/widget/
H A DSwipeDismissLayout.java64 private int mMinFlingVelocity; field in class:SwipeDismissLayout
124 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
323 mVelocityTracker.getXVelocity() < -mMinFlingVelocity) {
H A DResolverDrawerLayout.java85 private final float mMinFlingVelocity; field in class:ResolverDrawerLayout
136 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
356 if (Math.abs(yvel) > mMinFlingVelocity) {
633 if (velocityY > mMinFlingVelocity && mCollapseOffset != 0) {
642 if (!consumed && Math.abs(velocityY) > mMinFlingVelocity) {
/frameworks/base/core/java/android/widget/
H A DSwitch.java116 private int mMinFlingVelocity; field in class:Switch
286 mMinFlingVelocity = config.getScaledMinimumFlingVelocity();
1018 if (Math.abs(xvel) > mMinFlingVelocity) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSwitchCompat.java104 private int mMinFlingVelocity; field in class:SwitchCompat
225 mMinFlingVelocity = config.getScaledMinimumFlingVelocity();
734 if (Math.abs(xvel) > mMinFlingVelocity) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java357 private final int mMinFlingVelocity; field in class:RecyclerView
421 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
1713 if (!canScrollHorizontal || Math.abs(velocityX) < mMinFlingVelocity) {
1716 if (!canScrollVertical || Math.abs(velocityY) < mMinFlingVelocity) {
1763 return mMinFlingVelocity;

Completed in 189 milliseconds