Home
last modified time | relevance | path

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

/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DNonDistinctMultitouchHelper.java60 injectMotionEvent(action, me.getX(index), me.getY(index), downTime, eventTime, in processMotionEvent()
74 injectMotionEvent(MotionEvent.ACTION_UP, x, y, downTime, eventTime, in processMotionEvent()
89 injectMotionEvent(MotionEvent.ACTION_DOWN, x, y, downTime, eventTime, in processMotionEvent()
93 injectMotionEvent(MotionEvent.ACTION_UP, x, y, downTime, eventTime, in processMotionEvent()
104 private static void injectMotionEvent(final int action, final float x, final float y, in injectMotionEvent() method in NonDistinctMultitouchHelper
/aosp12/frameworks/base/core/tests/coretests/src/android/view/
H A DPinchZoomAction.java96 uiController.injectMotionEvent(firstFingerEvent); in sendPinchZoomAction()
106 uiController.injectMotionEvent(secondFingerEvent); in sendPinchZoomAction()
135 uiController.injectMotionEvent(event); in sendPinchZoomAction()
154 uiController.injectMotionEvent(secondFingerUpEvent); in sendPinchZoomAction()
169 uiController.injectMotionEvent(firstFingerUpEvent); in sendPinchZoomAction()
/aosp12/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DMouseUiController.java68 public boolean injectMotionEvent(MotionEvent event) throws InjectEventSecurityException { in injectMotionEvent() method in MouseUiController
76 return mUiController.injectMotionEvent(event); in injectMotionEvent()
100 success &= injectMotionEvent(me); in injectMotionEventSequence()
/aosp12/frameworks/base/services/core/java/com/android/server/input/
H A DInputShellCommand.java114 private void injectMotionEvent(int inputSource, int action, long downTime, long when, in injectMotionEvent() method in InputShellCommand
342 injectMotionEvent(inputSource, MotionEvent.ACTION_DOWN, now, now, x, y, 1.0f, in sendTap()
344 injectMotionEvent(inputSource, MotionEvent.ACTION_UP, now, now, x, y, 0.0f, displayId); in sendTap()
370 injectMotionEvent(inputSource, MotionEvent.ACTION_DOWN, down, down, x1, y1, 1.0f, in sendSwipe()
385 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, down, now, in sendSwipe()
389 injectMotionEvent(inputSource, MotionEvent.ACTION_UP, down, now, x2, y2, 0.0f, in sendSwipe()
413 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, now, dx, dy, 0.0f, in sendMove()
464 injectMotionEvent(inputSource, action, now, now, x, y, pressure, displayId); in sendMotionEvent()
/aosp12/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DIndicatorControlWheel.java254 private void injectMotionEvent(int viewIndex, MotionEvent event, int action) { in injectMotionEvent() method in IndicatorControlWheel
282 injectMotionEvent(mPressedIndex, event, MotionEvent.ACTION_CANCEL); in dispatchTouchEvent()
289 injectMotionEvent(index, event, MotionEvent.ACTION_DOWN); in dispatchTouchEvent()
541 injectMotionEvent(mPressedIndex, mLastMotionEvent, MotionEvent.ACTION_CANCEL); in onTouchOutBound()
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputDispatcher_test.cpp1500 injectMotionEvent(mDispatcher, in TEST_F()
1514 injectMotionEvent(mDispatcher, in TEST_F()
1530 injectMotionEvent(mDispatcher, in TEST_F()
1540 injectMotionEvent(mDispatcher, in TEST_F()
1553 injectMotionEvent(mDispatcher, in TEST_F()
1566 injectMotionEvent(mDispatcher, in TEST_F()
1577 injectMotionEvent(mDispatcher, in TEST_F()
1606 injectMotionEvent(mDispatcher, in TEST_F()
1618 injectMotionEvent(mDispatcher, in TEST_F()
1628 injectMotionEvent(mDispatcher, in TEST_F()
[all …]
/aosp12/packages/apps/Car/RotaryController/src/com/android/car/rotary/
H A DRotaryService.java1875 injectMotionEvent(displayId, clockwise ? rotationCount : -rotationCount); in handleRotateEvent()
2075 injectMotionEvent(displayId, axis, clockwise ? -rotationCount : rotationCount, in injectScrollEvent()
2079 private void injectMotionEvent(int displayId, int axisValue) { in injectMotionEvent() method in RotaryService
2080 injectMotionEvent(displayId, MotionEvent.AXIS_SCROLL, axisValue, /* x= */ 0, /* y= */ 0); in injectMotionEvent()
2083 private void injectMotionEvent(int displayId, int axis, int axisValue, float x, float y) { in injectMotionEvent() method in RotaryService
/aosp12/frameworks/base/services/
H A Dart-profile19601 HPLcom/android/server/input/InputShellCommand;->injectMotionEvent(IIJJFFFI)V