Home
last modified time | relevance | path

Searched refs:mDoubleTapSlop (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DDoubleTapHelper.java39 private float mDoubleTapSlop; field in DoubleTapHelper
55 mDoubleTapSlop = view.getResources().getDimension(R.dimen.double_tap_slop); in DoubleTapHelper()
151 return Math.abs(event.getX() - mActivationX) < mDoubleTapSlop in isWithinDoubleTapSlop()
152 && Math.abs(event.getY() - mActivationY) < mDoubleTapSlop; in isWithinDoubleTapSlop()
/frameworks/base/core/java/android/view/
DViewConfiguration.java291 private final int mDoubleTapSlop; field in ViewConfiguration
321 mDoubleTapSlop = DOUBLE_TAP_SLOP; in ViewConfiguration()
358 mDoubleTapSlop = (int) (sizeAndDensity * DOUBLE_TAP_SLOP + 0.5f); in ViewConfiguration()
670 return mDoubleTapSlop; in getScaledDoubleTapSlop()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DTouchExplorer.java101 private final int mDoubleTapSlop; field in TouchExplorer
179 mDoubleTapSlop = ViewConfiguration.get(context).getScaledDoubleTapSlop(); in TouchExplorer()
588 if (moveDelta < mDoubleTapSlop) { in handleMotionEventStateTouchExploring()