/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/ |
H A D | TouchExplorerTest.java | 26 import static android.view.MotionEvent.ACTION_POINTER_UP; 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() 366 ACTION_POINTER_UP, in testTwoFingersNotDrag_shouldDelegatingAndActionUpDownPointerDown() 381 ACTION_POINTER_UP, in testThreeFingersMove_shouldDelegatingAnd3ActionPointerDown() 382 ACTION_POINTER_UP, in testThreeFingersMove_shouldDelegatingAnd3ActionPointerDown() 637 final int action = ACTION_POINTER_UP | secondPointerId; in pointerUpEvent() 653 final int action = ACTION_POINTER_UP | thirdPointerId; in thirdPointerUpEvent()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/magnification/ |
H A D | FullScreenMagnificationGestureHandlerTest.java | 22 import static android.view.MotionEvent.ACTION_POINTER_UP; 368 send(pointerEvent(ACTION_POINTER_UP, DEFAULT_X * 2, DEFAULT_Y)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents() 375 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents() 394 send(pointerEvent(ACTION_POINTER_UP, new PointF[] {pointer1, pointer2, pointer3})); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents() 395 send(pointerEvent(ACTION_POINTER_UP, new PointF[] {pointer1, pointer2, pointer3})); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents() 403 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents() 404 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents() 674 send(pointerEvent(ACTION_POINTER_UP, DEFAULT_X * 2, DEFAULT_Y));
|
/aosp12/packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/ |
H A D | ClassifierData.java | 60 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in update() 73 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in cleanUp()
|
H A D | SpeedAnglesClassifier.java | 64 && !(action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in onTouchEvent()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/ |
H A D | AccessibilityInputConsumer.java | 22 import static android.view.MotionEvent.ACTION_POINTER_UP; 85 case ACTION_POINTER_UP: { in onMotionEvent()
|
H A D | OtherActivityInputConsumer.java | 22 import static android.view.MotionEvent.ACTION_POINTER_UP; 232 if (ev.getActionMasked() == ACTION_POINTER_UP) { in onMotionEvent() 267 case ACTION_POINTER_UP: { in onMotionEvent()
|
H A D | AssistantInputConsumer.java | 24 import static android.view.MotionEvent.ACTION_POINTER_UP; 140 case ACTION_POINTER_UP: { in onMotionEvent()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/utils/ |
H A D | TouchEventGenerator.java | 22 import static android.view.MotionEvent.ACTION_POINTER_UP; 136 if (originalEvent.getActionMasked() == ACTION_POINTER_UP) { in movePointer()
|
H A D | GestureLogParser.java | 164 return MotionEvent.ACTION_POINTER_UP; in stringToAction()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
H A D | WorkspaceTouchListener.java | 21 import static android.view.MotionEvent.ACTION_POINTER_UP; 140 if (action == ACTION_UP || action == ACTION_POINTER_UP) { in onTouch()
|
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
H A D | EventDispatcher.java | 247 case MotionEvent.ACTION_POINTER_UP: in computeInjectionAction() 253 | MotionEvent.ACTION_POINTER_UP; in computeInjectionAction() 377 final int action = computeInjectionAction(MotionEvent.ACTION_POINTER_UP, i); in sendUpForInjectedDownPointers()
|
H A D | TouchState.java | 138 case MotionEvent.ACTION_POINTER_UP: in onInjectedMotionEvent() 404 case MotionEvent.ACTION_POINTER_UP: in onMotionEvent()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | PinchZoomAction.java | 151 MotionEvent.ACTION_POINTER_UP, 2, pointerProperties, pointerCoords, in sendPinchZoomAction() 166 MotionEvent.ACTION_POINTER_UP, 1, pointerProperties, pointerCoords, in sendPinchZoomAction()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | ScaleGestureDetector.java | 282 action == MotionEvent.ACTION_POINTER_UP || in onTouchEvent() 285 final boolean pointerUp = action == MotionEvent.ACTION_POINTER_UP; in onTouchEvent()
|
H A D | TouchDelegate.java | 125 case MotionEvent.ACTION_POINTER_UP: in onTouchEvent()
|
H A D | MotionEvent.java | 274 public static final int ACTION_POINTER_UP = 6; field in MotionEvent 405 public static final int ACTION_POINTER_1_UP = ACTION_POINTER_UP | 0x0000; 412 public static final int ACTION_POINTER_2_UP = ACTION_POINTER_UP | 0x0100; 419 public static final int ACTION_POINTER_3_UP = ACTION_POINTER_UP | 0x0200; 3516 if (oldActionMasked == ACTION_POINTER_DOWN || oldActionMasked == ACTION_POINTER_UP) { in split() 3676 case ACTION_POINTER_UP: in actionToString()
|
H A D | GestureDetector.java | 549 (action & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_POINTER_UP; in onTouchEvent() 576 case MotionEvent.ACTION_POINTER_UP: in onTouchEvent()
|
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
H A D | Events.java | 44 return e.getActionMasked() == MotionEvent.ACTION_POINTER_UP; in isMultiPointerActionUp()
|
/aosp12/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
H A D | DragGestureDetector.java | 77 case MotionEvent.ACTION_POINTER_UP: in onTouchEvent()
|
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/ |
H A D | FullScreenMagnificationGestureHandler.java | 24 import static android.view.MotionEvent.ACTION_POINTER_UP; 331 if (action == ACTION_POINTER_UP in onMotionEvent() 477 case ACTION_POINTER_UP: { in onMotionEvent() 646 case ACTION_POINTER_UP: { in onMotionEvent()
|
/aosp12/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/ |
H A D | BallsView.java | 80 } else if (act == MotionEvent.ACTION_POINTER_UP) { in onTouchEvent()
|
/aosp12/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
H A D | PhotoViewPager.java | 167 case MotionEventCompat.ACTION_POINTER_UP: { in onInterceptTouchEvent()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpTouchHelper.java | 96 case MotionEvent.ACTION_POINTER_UP: in onInterceptTouchEvent()
|
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/testcomponent/ |
H A D | TouchEventGenerator.java | 162 action = MotionEvent.ACTION_POINTER_UP; in lift()
|
/aosp12/frameworks/base/services/tests/servicestests/res/raw/ |
H A D | a11y_three_finger_swipe_down_gesture.log | 27 MotionEvent { action=ACTION_POINTER_UP(0), actionButton=0, id[0]=0, x[0]=586.0, y[0]=1417.0, toolTy… 28 MotionEvent { action=ACTION_POINTER_UP(0), actionButton=0, id[0]=1, x[0]=826.0, y[0]=1493.0, toolTy…
|