Searched refs:DOUBLE_TAP_TIMEOUT (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/phone/ |
H A D | PipTouchStateTest.java | 71 currentTime + PipTouchState.DOUBLE_TAP_TIMEOUT + 10, 0, 0)); in testDoubleTapLongSingleTap_notDoubleTapAndNotWaiting() 83 currentTime + PipTouchState.DOUBLE_TAP_TIMEOUT - 10, 0, 0)); in testDoubleTapTimeout_timeoutCallbackCalled() 114 currentTime + PipTouchState.DOUBLE_TAP_TIMEOUT - 20, 0, 0)); in testDoubleTap_doubleTapRegistered() 116 currentTime + PipTouchState.DOUBLE_TAP_TIMEOUT - 10, 0, 0)); in testDoubleTap_doubleTapRegistered()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
H A D | PipTouchState.java | 40 public static final long DOUBLE_TAP_TIMEOUT = ViewConfiguration.getDoubleTapTimeout(); field in PipTouchState 133 && (mDownTouchTime - mLastDownTouchTime) < DOUBLE_TAP_TIMEOUT; in onTouchEvent() 221 && (mUpTouchTime - mDownTouchTime) < DOUBLE_TAP_TIMEOUT; in onTouchEvent() 357 return Math.max(0, DOUBLE_TAP_TIMEOUT - (mUpTouchTime - mDownTouchTime));
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | GestureDetector.java | 253 private static final int DOUBLE_TAP_TIMEOUT = ViewConfiguration.getDoubleTapTimeout(); field in GestureDetector 625 mHandler.sendEmptyMessageDelayed(TAP, DOUBLE_TAP_TIMEOUT); in onTouchEvent() 876 if (deltaTime > DOUBLE_TAP_TIMEOUT || deltaTime < DOUBLE_TAP_MIN_TIME) { in isConsideredDoubleTap()
|
H A D | ViewConfiguration.java | 136 private static final int DOUBLE_TAP_TIMEOUT = 300; field in ViewConfiguration 706 return DOUBLE_TAP_TIMEOUT; in getDoubleTapTimeout()
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 60046 Landroid/view/GestureDetector;->DOUBLE_TAP_TIMEOUT:I 63863 Landroid/view/ViewConfiguration;->DOUBLE_TAP_TIMEOUT:I
|