Searched refs:ACTION_MOVE (Results 1 - 25 of 150) sorted by relevance

123456

/frameworks/support/compat/src/androidTest/java/androidx/core/view/
H A DDragStartHelperTest.java189 sendMouseEvent(MotionEvent.ACTION_MOVE,
191 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_PRIMARY, mDragSource, 0, 0);
193 // ACTION_MOVE with the same position does not trigger OnDragStart.
205 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_PRIMARY, mDragSource, 1, 2);
206 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_PRIMARY, mDragSource, 3, 4);
207 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_PRIMARY, mDragSource, 5, 6);
223 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_SECONDARY, mDragSource, 1, 2);
227 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_TERTIARY, mDragSource, 1, 2);
249 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEvent.BUTTON_PRIMARY, mDragSource, 1, 2);
250 sendMouseEvent(MotionEvent.ACTION_MOVE, MotionEven
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DDragInputEventReceiver.java22 import static android.view.MotionEvent.ACTION_MOVE;
82 case ACTION_MOVE:
/frameworks/base/core/java/android/view/
H A DTouchDelegate.java116 case MotionEvent.ACTION_MOVE:
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DVerticalSeekBar.java67 case MotionEvent.ACTION_MOVE:
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DVerticalSeekBar.java67 case MotionEvent.ACTION_MOVE:
/frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
H A DGestureSelectionHelper_RecyclerViewDelegateTest.java72 return TestEvents.builder().action(MotionEvent.ACTION_MOVE).location(x, y).build();
H A DGestureSelectionHelperTest.java46 .action(MotionEvent.ACTION_MOVE)
H A DBandSelectionHelperTest.java92 mStartBuilder = new Builder().mouse().primary().action(MotionEvent.ACTION_MOVE);
198 mStopBuilder.action(MotionEvent.ACTION_MOVE).touch().build()));
H A DMouseInputHandlerTest.java143 mEvent.action(MotionEvent.ACTION_MOVE).primary().build(),
153 mEvent.action(MotionEvent.ACTION_MOVE).build(),
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/pip/phone/
H A DPipTouchStateTest.java20 import static android.view.MotionEvent.ACTION_MOVE;
99 mTouchState.onTouchEvent(createMotionEvent(ACTION_MOVE, currentTime + 10, 500, 500));
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOcquarium.java62 case MotionEvent.ACTION_MOVE:
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
H A DBasicGLSurfaceView.java65 if (event.getAction() == MotionEvent.ACTION_MOVE) {
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
H A DRSTestView.java90 else if (act == ev.ACTION_MOVE) {
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
H A DRSTestView.java90 else if (act == ev.ACTION_MOVE) {
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
H A DRSTestView.java90 else if (act == ev.ACTION_MOVE) {
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DDragStartHelper.java137 case MotionEvent.ACTION_MOVE:
144 // Ignore ACTION_MOVE events once the drag operation is in progress.
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTouchUtils.java51 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE,
109 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE,
286 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, x, y, 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDoubleTapHelper.java79 case MotionEvent.ACTION_MOVE:
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DMagnificationGestureHandlerTest.java20 import static android.view.MotionEvent.ACTION_MOVE;
432 send(pointerEvent(ACTION_MOVE, DEFAULT_X * 2, DEFAULT_Y * 3));
433 send(pointerEvent(ACTION_MOVE, DEFAULT_X * 2, DEFAULT_Y * 4));
549 MotionEvent.obtain(mLastDownTime, mClock.now(), ACTION_MOVE, x, y, 0));
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java131 case MotionEvent.ACTION_MOVE: {
/frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
H A DMotionEvents.java41 return e.getActionMasked() == MotionEvent.ACTION_MOVE;
H A DGestureSelectionHelper.java112 case MotionEvent.ACTION_MOVE:
125 case MotionEvent.ACTION_MOVE:
177 // Call when an intercepted ACTION_MOVE event is passed down.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDragDownHelper.java85 case MotionEvent.ACTION_MOVE:
110 case MotionEvent.ACTION_MOVE:
/frameworks/support/wear/src/androidTest/java/androidx/wear/widget/
H A DScrollManagerTest.java141 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, x, y, 0);
172 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, x, y, 0);
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java226 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
251 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
267 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, dx, dy, 0.0f);

Completed in 501 milliseconds

123456