Searched refs:mDoubleTapSlop (Results 1 – 4 of 4) 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()
315 private final int mDoubleTapSlop; field in ViewConfiguration353 mDoubleTapSlop = DOUBLE_TAP_SLOP; in ViewConfiguration()398 mDoubleTapSlop = (int) (sizeAndDensity * DOUBLE_TAP_SLOP + 0.5f); in ViewConfiguration()733 return mDoubleTapSlop; in getScaledDoubleTapSlop()
102 private final int mDoubleTapSlop; field in TouchExplorer192 mDoubleTapSlop = ViewConfiguration.get(context).getScaledDoubleTapSlop(); in TouchExplorer()591 if (moveDelta < mDoubleTapSlop) { in handleMotionEventStateTouchExploring()1339 ", mDoubleTapSlop: " + mDoubleTapSlop + in toString()
78317 Landroid/view/ViewConfiguration;->mDoubleTapSlop:I