Home
last modified time | relevance | path

Searched refs:ACTION_POINTER_UP (Results 1 – 25 of 69) sorted by relevance

123

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
H A DTouchExplorerTest.java26 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 DFullScreenMagnificationGestureHandlerTest.java22 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 DClassifierData.java60 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in update()
73 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in cleanUp()
H A DSpeedAnglesClassifier.java64 && !(action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in onTouchEvent()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
H A DAccessibilityInputConsumer.java22 import static android.view.MotionEvent.ACTION_POINTER_UP;
85 case ACTION_POINTER_UP: { in onMotionEvent()
H A DOtherActivityInputConsumer.java22 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 DAssistantInputConsumer.java24 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 DTouchEventGenerator.java22 import static android.view.MotionEvent.ACTION_POINTER_UP;
136 if (originalEvent.getActionMasked() == ACTION_POINTER_UP) { in movePointer()
H A DGestureLogParser.java164 return MotionEvent.ACTION_POINTER_UP; in stringToAction()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/touch/
H A DWorkspaceTouchListener.java21 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 DEventDispatcher.java247 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 DTouchState.java138 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 DPinchZoomAction.java151 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 DScaleGestureDetector.java282 action == MotionEvent.ACTION_POINTER_UP || in onTouchEvent()
285 final boolean pointerUp = action == MotionEvent.ACTION_POINTER_UP; in onTouchEvent()
H A DTouchDelegate.java125 case MotionEvent.ACTION_POINTER_UP: in onTouchEvent()
H A DMotionEvent.java274 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 DGestureDetector.java549 (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 DEvents.java44 return e.getActionMasked() == MotionEvent.ACTION_POINTER_UP; in isMultiPointerActionUp()
/aosp12/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DDragGestureDetector.java77 case MotionEvent.ACTION_POINTER_UP: in onTouchEvent()
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
H A DFullScreenMagnificationGestureHandler.java24 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 DBallsView.java80 } else if (act == MotionEvent.ACTION_POINTER_UP) { in onTouchEvent()
/aosp12/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java167 case MotionEventCompat.ACTION_POINTER_UP: { in onInterceptTouchEvent()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpTouchHelper.java96 case MotionEvent.ACTION_POINTER_UP: in onInterceptTouchEvent()
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/testcomponent/
H A DTouchEventGenerator.java162 action = MotionEvent.ACTION_POINTER_UP; in lift()
/aosp12/frameworks/base/services/tests/servicestests/res/raw/
H A Da11y_three_finger_swipe_down_gesture.log27 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…

123