Home
last modified time | relevance | path

Searched refs:mCurrentMotionEvent (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
DGestureDetector.java274 private MotionEvent mCurrentMotionEvent; field in GestureDetector
538 if (mCurrentMotionEvent != null) { in onTouchEvent()
539 mCurrentMotionEvent.recycle(); in onTouchEvent()
541 mCurrentMotionEvent = MotionEvent.obtain(ev); in onTouchEvent()
896 if (mCurrentDownEvent == null || mCurrentMotionEvent == null) { in recordGestureClassification()
905 (int) (SystemClock.uptimeMillis() - mCurrentMotionEvent.getDownTime()), in recordGestureClassification()
906 (float) Math.hypot(mCurrentMotionEvent.getRawX() - mCurrentDownEvent.getRawX(), in recordGestureClassification()
907 mCurrentMotionEvent.getRawY() - mCurrentDownEvent.getRawY())); in recordGestureClassification()