Searched refs:createMotionEvent (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/pip/phone/ |
D | PipTouchStateTest.java | 68 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTapLongSingleTap_notDoubleTapAndNotWaiting() 69 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, in testDoubleTapLongSingleTap_notDoubleTapAndNotWaiting() 80 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTapTimeout_timeoutCallbackCalled() 81 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, in testDoubleTapTimeout_timeoutCallbackCalled() 99 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTapDrag_doubleTapCanceled() 100 mTouchState.onTouchEvent(createMotionEvent(ACTION_MOVE, currentTime + 10, 500, 500)); in testDoubleTapDrag_doubleTapCanceled() 101 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, currentTime + 20, 500, 500)); in testDoubleTapDrag_doubleTapCanceled() 112 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTap_doubleTapRegistered() 113 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, currentTime + 10, 0, 0)); in testDoubleTap_doubleTapRegistered() 114 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, in testDoubleTap_doubleTapRegistered() [all …]
|
/frameworks/base/core/jni/ |
D | android_view_InputQueue.cpp | 171 MotionEvent* InputQueue::createMotionEvent() { in createMotionEvent() function in android::InputQueue 172 return mPooledInputEventFactory.createMotionEvent(); in createMotionEvent() 245 MotionEvent* event = queue->createMotionEvent(); in nativeSendMotionEvent()
|
/frameworks/base/core/jni/include/android_runtime/ |
D | android_view_InputQueue.h | 53 MotionEvent* createMotionEvent();
|
/frameworks/native/include/input/ |
D | Input.h | 689 virtual MotionEvent* createMotionEvent() = 0; 702 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; } in createMotionEvent() function 718 virtual MotionEvent* createMotionEvent();
|
/frameworks/native/libs/input/ |
D | Input.cpp | 596 MotionEvent* PooledInputEventFactory::createMotionEvent() { in createMotionEvent() function in android::PooledInputEventFactory
|
D | InputTransport.cpp | 686 MotionEvent* motionEvent = factory->createMotionEvent(); in consume() 750 MotionEvent* motionEvent = factory->createMotionEvent(); in consumeSamples()
|