Searched refs:mDoubleTapSlop (Results 1 – 3 of 3) sorted by relevance
39 private float mDoubleTapSlop; field in DoubleTapHelper55 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()
291 private final int mDoubleTapSlop; field in ViewConfiguration321 mDoubleTapSlop = DOUBLE_TAP_SLOP; in ViewConfiguration()358 mDoubleTapSlop = (int) (sizeAndDensity * DOUBLE_TAP_SLOP + 0.5f); in ViewConfiguration()670 return mDoubleTapSlop; in getScaledDoubleTapSlop()
101 private final int mDoubleTapSlop; field in TouchExplorer179 mDoubleTapSlop = ViewConfiguration.get(context).getScaledDoubleTapSlop(); in TouchExplorer()588 if (moveDelta < mDoubleTapSlop) { in handleMotionEventStateTouchExploring()