Home
last modified time | relevance | path

Searched refs:ACTION_POINTER_DOWN (Results 1 – 25 of 54) sorted by relevance

123

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/magnification/
H A DFullScreenMagnificationGestureHandlerTest.java21 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
350 send(pointerEvent(ACTION_POINTER_DOWN, DEFAULT_X * 2, DEFAULT_Y)); in testNonTransitions_dontChangeState()
417 send(pointerEvent(ACTION_POINTER_DOWN, DEFAULT_X * 2, DEFAULT_Y)); in testTwoFingersOneTap_activatedState_dispatchMotionEvents()
424 expectedActions.add(Integer.valueOf(ACTION_POINTER_DOWN)); in testTwoFingersOneTap_activatedState_dispatchMotionEvents()
451 send(pointerEvent(ACTION_POINTER_DOWN, new PointF[] {pointer1, pointer2}, 1)); in testThreeFingersOneTap_activatedState_dispatchMotionEvents()
460 expectedActions.add(Integer.valueOf(ACTION_POINTER_DOWN)); in testThreeFingersOneTap_activatedState_dispatchMotionEvents()
461 expectedActions.add(Integer.valueOf(ACTION_POINTER_DOWN)); in testThreeFingersOneTap_activatedState_dispatchMotionEvents()
477 send(pointerEvent(ACTION_POINTER_DOWN, new PointF[] {pointer1, pointer2}, 1)); in testFirstFingerSwipe_twoPointerDownAndActivatedState_panningState()
494 send(pointerEvent(ACTION_POINTER_DOWN, new PointF[] {pointer1, pointer2}, 1)); in testSecondFingerSwipe_twoPointerDownAndActivatedState_panningState()
511 send(pointerEvent(ACTION_POINTER_DOWN, new PointF[] {pointer1, pointer2}, 1)); in testSecondFingerSwipe_twoPointerDownAndShortcutTriggeredState_panningState()
[all …]
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
H A DTouchExplorerTest.java25 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
317 assertCapturedEvents(ACTION_DOWN, ACTION_POINTER_DOWN, ACTION_POINTER_UP, ACTION_UP); in testTwoFingersMove_shouldDelegatingAndInjectActionDownPointerDown()
339 assertCapturedEvents(ACTION_DOWN, ACTION_POINTER_DOWN, ACTION_POINTER_UP, ACTION_UP); in clearEventsWhenInTwoFingerMove_clearsStateAndSendsUp()
365 ACTION_POINTER_DOWN, in testTwoFingersNotDrag_shouldDelegatingAndActionUpDownPointerDown()
379 ACTION_POINTER_DOWN, in testThreeFingersMove_shouldDelegatingAnd3ActionPointerDown()
380 ACTION_POINTER_DOWN, in testThreeFingersMove_shouldDelegatingAnd3ActionPointerDown()
629 final int action = ACTION_POINTER_DOWN | secondPointerId; in pointerDownEvent()
645 final int action = ACTION_POINTER_DOWN | thirdPointerId; in thirdPointerDownEvent()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/utils/
H A DTouchEventGenerator.java21 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
72 final int action = ACTION_POINTER_DOWN | actionIndex; in twoPointersDownEvents()
H A DGestureLogParser.java162 return MotionEvent.ACTION_POINTER_DOWN; in stringToAction()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DTouchLogger.kt73 MotionEvent.ACTION_POINTER_DOWN -> "POINTER_DOWN"
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
H A DQuickSettingsControllerTest.java21 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
215 createMultitouchMotionEvent(ACTION_POINTER_DOWN), false, false); in handleTouch_twoFingerDrag()
314 createMultitouchMotionEvent(ACTION_POINTER_DOWN))).isTrue(); in isOpenQsEvent_twoFingerDrag()
/aosp14/frameworks/base/core/tests/coretests/src/android/view/
H A DMotionEventTest.java21 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
142 0 /* eventTime */, ACTION_POINTER_DOWN, pointerCount, properties, coords, in testCalculatesCursorPositionForMultiTouchMouseEvents()
H A DViewGroupTest.java99 MotionEvent.ACTION_POINTER_DOWN | (1 << MotionEvent.ACTION_POINTER_INDEX_SHIFT), in testDispatchMouseEventsUnderCursor()
H A DPinchZoomAction.java91 MotionEvent.ACTION_POINTER_DOWN + in sendPinchZoomAction()
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/phone/
H A DPipResizeGestureHandlerTest.java150 obtainMotionEvent(MotionEvent.ACTION_POINTER_DOWN, topLeft, bottomRight); in twoInput_triggersPinchResize_getBigger()
191 obtainMotionEvent(MotionEvent.ACTION_POINTER_DOWN, topLeft, bottomRight); in twoInput_triggersPinchResize_getSmaller()
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/
H A DTouchState.java151 case MotionEvent.ACTION_POINTER_DOWN: in onInjectedMotionEvent()
446 case MotionEvent.ACTION_POINTER_DOWN: in onMotionEvent()
H A DEventDispatcher.java239 case MotionEvent.ACTION_POINTER_DOWN: in computeInjectionAction()
245 | MotionEvent.ACTION_POINTER_DOWN; in computeInjectionAction()
H A DGestureMatcher.java142 case MotionEvent.ACTION_POINTER_DOWN: in onMotionEvent()
H A DTouchExplorer.java27 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
612 case ACTION_POINTER_DOWN: in handleMotionEventStateTouchInteracting()
642 case ACTION_POINTER_DOWN: in handleMotionEventStateTouchExploring()
945 case ACTION_POINTER_DOWN: in handleMotionEventStateDragging()
/aosp14/frameworks/base/core/java/android/view/
H A DTouchDelegate.java124 case MotionEvent.ACTION_POINTER_DOWN: in onTouchEvent()
H A DMotionEvent.java265 public static final int ACTION_POINTER_DOWN = 5; field in MotionEvent
386 public static final int ACTION_POINTER_1_DOWN = ACTION_POINTER_DOWN | 0x0000;
393 public static final int ACTION_POINTER_2_DOWN = ACTION_POINTER_DOWN | 0x0100;
400 public static final int ACTION_POINTER_3_DOWN = ACTION_POINTER_DOWN | 0x0200;
3808 if (oldActionMasked == ACTION_POINTER_DOWN || oldActionMasked == ACTION_POINTER_UP) { in split()
3814 newAction = oldActionMasked == ACTION_POINTER_DOWN in split()
3966 case ACTION_POINTER_DOWN: in actionToString()
H A DVerifiedMotionEvent.java62 @IntDef({MotionEvent.ACTION_DOWN, MotionEvent.ACTION_POINTER_DOWN, MotionEvent.ACTION_CANCEL,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/
H A DMagnificationGestureDetector.java124 case MotionEvent.ACTION_POINTER_DOWN: in onTouch()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
H A DPipResizeGestureHandler.java350 case MotionEvent.ACTION_POINTER_DOWN: in willStartResizeGesture()
419 if (action == MotionEvent.ACTION_POINTER_DOWN) { in onPinchResize()
489 case MotionEvent.ACTION_POINTER_DOWN: in onDragCornerResize()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/
H A DSinglePointerTouchProcessorTest.kt291 MotionEvent.ACTION_POINTER_DOWN +
304 MotionEvent.ACTION_POINTER_DOWN +
317 MotionEvent.ACTION_POINTER_DOWN +
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
H A DSinglePointerTouchProcessor.kt62 MotionEvent.ACTION_POINTER_DOWN,
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
H A DFalsingDataProviderTest.java290 appendTrackpadPointerDownEvent(getPointerAction(MotionEvent.ACTION_POINTER_DOWN, 1), in test_IsFromTrackpad()
293 appendTrackpadPointerDownEvent(getPointerAction(MotionEvent.ACTION_POINTER_DOWN, 2), in test_IsFromTrackpad()
/aosp14/frameworks/base/services/tests/servicestests/res/raw/
H A Da11y_three_finger_swipe_down_gesture.log3 MotionEvent { action=ACTION_POINTER_DOWN(1), actionButton=0, id[0]=0, x[0]=500.0, y[0]=696.0, toolT…
5 MotionEvent { action=ACTION_POINTER_DOWN(2), actionButton=0, id[0]=0, x[0]=500.0, y[0]=696.0, toolT…
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/
H A DMagnificationGestureDetectorTest.java129 MotionEvent.ACTION_POINTER_DOWN, ACTION_DOWN_X, ACTION_DOWN_Y); in performSingleTapWithTwoPointers_notInvokeSingleTapCallback()
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
H A DFullScreenMagnificationGestureHandler.java23 import static android.view.MotionEvent.ACTION_POINTER_DOWN;
569 case ACTION_POINTER_DOWN: { in onMotionEvent()
802 case ACTION_POINTER_DOWN: { in onMotionEvent()

123