Home | History | Annotate | Download | only in webkit

Lines Matching refs:mLastEvent

1221         private MotionEvent mLastEvent;
1228 return mLastEvent;
1241 event = mLastEvent;
1244 mLastEvent = null;
1255 if (mLastEvent == null
1256 || mLastEvent.getAction() == MotionEvent.ACTION_UP) {
1267 if (mLastEvent == null) {
1283 return mLastEvent != null && mLastEvent.getAction() != MotionEvent.ACTION_UP;
1287 if (mLastEvent != null) {
1288 mLastEvent.recycle();
1290 mLastEvent = event != null ? MotionEvent.obtainNoHistory(event) : null;