Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DGestureDetector.java268 private MotionEvent mCurrentMotionEvent; field in GestureDetector
520 if (mCurrentMotionEvent != null) { in onTouchEvent()
521 mCurrentMotionEvent.recycle(); in onTouchEvent()
523 mCurrentMotionEvent = MotionEvent.obtain(ev); in onTouchEvent()
878 if (mCurrentDownEvent == null || mCurrentMotionEvent == null) { in recordGestureClassification()
887 (int) (SystemClock.uptimeMillis() - mCurrentMotionEvent.getDownTime()), in recordGestureClassification()
888 (float) Math.hypot(mCurrentMotionEvent.getRawX() - mCurrentDownEvent.getRawX(), in recordGestureClassification()
889 mCurrentMotionEvent.getRawY() - mCurrentDownEvent.getRawY())); in recordGestureClassification()