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 | 73 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTapLongSingleTap_notDoubleTapAndNotWaiting() 74 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, in testDoubleTapLongSingleTap_notDoubleTapAndNotWaiting() 85 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTapTimeout_timeoutCallbackCalled() 86 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, in testDoubleTapTimeout_timeoutCallbackCalled() 104 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTapDrag_doubleTapCanceled() 105 mTouchState.onTouchEvent(createMotionEvent(ACTION_MOVE, currentTime + 10, 500, 500)); in testDoubleTapDrag_doubleTapCanceled() 106 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, currentTime + 20, 500, 500)); in testDoubleTapDrag_doubleTapCanceled() 117 mTouchState.onTouchEvent(createMotionEvent(ACTION_DOWN, currentTime, 0, 0)); in testDoubleTap_doubleTapRegistered() 118 mTouchState.onTouchEvent(createMotionEvent(ACTION_UP, currentTime + 10, 0, 0)); in testDoubleTap_doubleTapRegistered() 119 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 | 836 virtual MotionEvent* createMotionEvent() = 0; 850 virtual MotionEvent* createMotionEvent() override { return &mMotionEvent; } in createMotionEvent() function 868 virtual MotionEvent* createMotionEvent() override;
|
/frameworks/native/libs/input/ |
D | InputTransport.cpp | 715 MotionEvent* motionEvent = factory->createMotionEvent(); in consume() 790 MotionEvent* motionEvent = factory->createMotionEvent(); in consumeSamples()
|
D | Input.cpp | 745 MotionEvent* PooledInputEventFactory::createMotionEvent() { in createMotionEvent() function in android::PooledInputEventFactory
|