HomeSort by relevance Sort by last modified time
    Searched refs:DOUBLE_TAP_TIMEOUT (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/view/
ViewConfiguration.java 97 private static final int DOUBLE_TAP_TIMEOUT = 300;
435 return DOUBLE_TAP_TIMEOUT;
GestureDetector.java 204 private static final int DOUBLE_TAP_TIMEOUT = ViewConfiguration.getDoubleTapTimeout();
522 mHandler.sendEmptyMessageDelayed(TAP, DOUBLE_TAP_TIMEOUT);
663 if (secondDown.getEventTime() - firstUp.getEventTime() > DOUBLE_TAP_TIMEOUT) {
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 64 private static final int DOUBLE_TAP_TIMEOUT = ViewConfiguration.getDoubleTapTimeout();
292 mHandler.sendEmptyMessageDelayed(TAP, DOUBLE_TAP_TIMEOUT);
432 if (secondDown.getEventTime() - firstUp.getEventTime() > DOUBLE_TAP_TIMEOUT) {
  /frameworks/base/core/java/android/webkit/
WebViewInputDispatcher.java 137 private static final int DOUBLE_TAP_TIMEOUT = ViewConfiguration.getDoubleTapTimeout();
452 mUiHandler.sendEmptyMessageDelayed(UiHandler.MSG_CLICK, DOUBLE_TAP_TIMEOUT);
    [all...]

Completed in 189 milliseconds