Lines Matching refs:MotionEvent

25 import android.view.MotionEvent;
261 MotionEvent event = MotionEvent.obtain(downTime, eventTime, in tapView()
262 MotionEvent.ACTION_DOWN, x, y, 0); in tapView()
268 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, in tapView()
274 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP, x, y, 0); in tapView()
301 MotionEvent event = MotionEvent.obtain(downTime, eventTime, in touchAndCancelView()
302 MotionEvent.ACTION_DOWN, x, y, 0); in touchAndCancelView()
308 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_CANCEL, in touchAndCancelView()
336 MotionEvent event = MotionEvent.obtain(downTime, eventTime, in clickView()
337 MotionEvent.ACTION_DOWN, x, y, 0); in clickView()
344 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, in clickView()
350 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP, x, y, 0); in clickView()
397 MotionEvent event = MotionEvent.obtain(downTime, eventTime, in longClickView()
398 MotionEvent.ACTION_DOWN, x, y, 0); in longClickView()
404 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, in longClickView()
416 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP, x, y, 0); in longClickView()
770 MotionEvent event = MotionEvent.obtain(downTime, eventTime, in drag()
771 MotionEvent.ACTION_DOWN, x, y, 0); in drag()
777 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, x, y, 0); in drag()
782 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP, x, y, 0); in drag()