Searched defs:firstUp (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/view/
H A DGestureDetector.java657 private boolean isConsideredDoubleTap(MotionEvent firstDown, MotionEvent firstUp, argument
663 if (secondDown.getEventTime() - firstUp.getEventTime() > DOUBLE_TAP_TIMEOUT) {
/frameworks/base/services/java/com/android/server/accessibility/
H A DGestureUtils.java20 public static boolean isMultiTap(MotionEvent firstUp, MotionEvent secondUp, argument
22 return eventsWithinTimeAndDistanceSlop(firstUp, secondUp, multiTapTimeSlop,
43 public static boolean isTimedOut(MotionEvent firstUp, MotionEvent secondUp, int timeout) { argument
44 final long deltaTime = secondUp.getEventTime() - firstUp.getEventTime();
/frameworks/support/v4/java/android/support/v4/view/
H A DGestureDetectorCompat.java426 private boolean isConsideredDoubleTap(MotionEvent firstDown, MotionEvent firstUp, argument
432 if (secondDown.getEventTime() - firstUp.getEventTime() > DOUBLE_TAP_TIMEOUT) {

Completed in 61 milliseconds