/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ExpandHelper.java | 314 mLastMotionY = ev.getRawY(); in onInterceptTouchEvent() 340 mLastMotionY = ev.getRawY(); in onInterceptTouchEvent() 341 mInitialTouchY = ev.getRawY(); in onInterceptTouchEvent() 359 mInitialTouchY = ev.getRawY(); in onInterceptTouchEvent() 371 mLastMotionY = ev.getRawY(); in onInterceptTouchEvent() 448 mLastMotionY = ev.getRawY(); in onTouchEvent() 457 mInitialTouchY = ev.getRawY(); in onTouchEvent() 469 mLastMotionY = ev.getRawY(); in onTouchEvent() 497 mLastMotionY = ev.getRawY(); in onTouchEvent() 510 mLastMotionY = ev.getRawY(); in onTouchEvent() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/window/ |
H A D | StatusBarWindowView.java | 77 if (ev.getAction() == ACTION_DOWN && ev.getRawY() > getHeight()) { in dispatchTouchEvent() 78 mTouchDownY = ev.getRawY(); in dispatchTouchEvent() 81 ev.setLocation(ev.getRawX(), mTopInset + ev.getRawY() - mTouchDownY); in dispatchTouchEvent()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
H A D | PipTouchState.java | 127 mLastTouch.set(ev.getRawX(), ev.getRawY()); in onTouchEvent() 158 float y = ev.getRawY(pointerIndex); in onTouchEvent() 194 mLastTouch.set(ev.getRawX(newPointerIndex), ev.getRawY(newPointerIndex)); in onTouchEvent() 218 mLastTouch.set(ev.getRawX(pointerIndex), ev.getRawY(pointerIndex)); in onTouchEvent() 388 float deltaY = event.getRawY() - event.getY();
|
H A D | PipResizeGestureHandler.java | 270 if (!pipBounds.contains((int) mv.getRawX(), (int) mv.getRawY()) in onInputEvent() 345 if (isWithinDragResizeRegion((int) ev.getRawX(), (int) ev.getRawY())) { in willStartResizeGesture() 421 && pipBounds.contains((int) ev.getRawX(0), (int) ev.getRawY(0)) in onPinchResize() 422 && pipBounds.contains((int) ev.getRawX(1), (int) ev.getRawY(1))) { in onPinchResize() 426 mDownPoint.set(ev.getRawX(mFirstIndex), ev.getRawY(mFirstIndex)); in onPinchResize() 427 mDownSecondPoint.set(ev.getRawX(mSecondIndex), ev.getRawY(mSecondIndex)); in onPinchResize() 442 float y0 = ev.getRawY(mFirstIndex); in onPinchResize() 444 float y1 = ev.getRawY(mSecondIndex); in onPinchResize()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | MenuListViewTouchHandler.java | 60 final float dy = motionEvent.getRawY() - mDown.y; in onInterceptTouchEvent() 66 mDown.set(motionEvent.getRawX(), motionEvent.getRawY()); in onInterceptTouchEvent() 143 final float deltaY = motionEvent.getRawY() - motionEvent.getY(); in addMovement()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/ |
H A D | DragDetector.java | 83 float rawY = ev.getRawY(0); in onMotionEvent() 95 float dy = ev.getRawY(dragPointerIndex) - mInputDownPoint.y; in onMotionEvent()
|
H A D | CaptionWindowDecorViewModel.java | 272 0 /* ctrlType */, e.getRawX(0), e.getRawY(0)); in handleMotionEvent() 282 e.getRawX(dragPointerIdx), e.getRawY(dragPointerIdx)); in handleMotionEvent() 293 e.getRawX(dragPointerIdx), e.getRawY(dragPointerIdx)); in handleMotionEvent()
|
H A D | DesktopModeWindowDecorViewModel.java | 447 e.getRawY(0)); in handleMotionEvent() 460 e.getRawX(dragPointerIdx), e.getRawY(dragPointerIdx)); in handleMotionEvent() 463 new PointF(e.getRawX(dragPointerIdx), e.getRawY(dragPointerIdx)), in handleMotionEvent() 489 (int) (e.getRawY(dragPointerIdx) - e.getY(dragPointerIdx))); in handleMotionEvent() 491 e.getRawX(dragPointerIdx), e.getRawY(dragPointerIdx)); in handleMotionEvent() 494 new PointF(e.getRawX(dragPointerIdx), e.getRawY(dragPointerIdx)), in handleMotionEvent()
|
H A D | DragResizeInputListener.java | 404 float rawY = e.getRawY(0); in handleMotionEvent() 417 float rawY = e.getRawY(dragPointerIndex); in handleMotionEvent() 427 e.getRawX(dragPointerIndex), e.getRawY(dragPointerIndex)); in handleMotionEvent()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/ |
H A D | SimpleMirrorWindowControl.java | 155 mLastDrag.set(event.getRawX(), event.getRawY()); in handleDragState() 159 int yDiff = (int) (event.getRawY() - mLastDrag.y); in handleDragState() 161 mLastDrag.set(event.getRawX(), event.getRawY()); in handleDragState()
|
H A D | MagnificationGestureDetector.java | 115 final float rawY = event.getRawY(); in onTouch()
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | DragInputEventReceiver.java | 67 final float newY = motionEvent.getRawY(); in onInputEvent()
|
/aosp14/frameworks/base/core/java/android/inputmethodservice/navigationbar/ |
H A D | KeyButtonView.java | 189 mTouchDownY = (int) ev.getRawY(); in onTouchEvent() 204 y = (int) ev.getRawY(); in onTouchEvent()
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/udfps/ |
H A D | UdfpsUtils.java | 168 Point portraitTouch = new Point((int) event.getRawX(idx), (int) event.getRawY(idx)); in getPortraitTouch()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/ |
H A D | SinglePointerTouchProcessor.kt | 174 val touchPoint = PointF(getRawX(pointerIndex), getRawY(pointerIndex))
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | VerifiedMotionEvent.java | 215 public float getRawY() { in getRawY() method in VerifiedMotionEvent
|
H A D | GestureDetector.java | 913 mCurrentMotionEvent.getRawY() - mCurrentDownEvent.getRawY())); in recordGestureClassification()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | GestureRecorder.java | 71 this.event.getRawY(), in toJson()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardPatternView.java | 172 || mLockPatternScreenBounds.contains((int) event.getRawX(), (int) event.getRawY()); in disallowInterceptTouch()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
H A D | DraggableConstraintLayout.java | 110 return !mActionsRect.contains((int) ev2.getRawX(), (int) ev2.getRawY()) in DraggableConstraintLayout()
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | DecorCaptionView.java | 202 startMovingTask(e.getRawX(), e.getRawY()); in onTouch()
|
/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/ |
H A D | HandwritingModeController.java | 256 focusedWindowToken, mCurrentDisplayId, downEvent.getRawX(), downEvent.getRawY())) { in startHandwritingSession()
|
/aosp14/frameworks/base/native/android/ |
H A D | input.cpp | 160 return static_cast<const MotionEvent*>(motion_event)->getRawY(pointer_index); in AMotionEvent_getRawY()
|
/aosp14/frameworks/base/services/core/java/com/android/server/display/ |
H A D | OverlayDisplayWindow.java | 348 event.setLocation(event.getRawX(), event.getRawY());
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | BubbleExpandedView.java | 399 if (motionEvent.getRawY() >= avBounds.top in onFinishInflate() 400 && motionEvent.getRawY() <= avBounds.bottom in onFinishInflate()
|