Searched refs:newX (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DDragInputEventReceiver.java66 final float newX = motionEvent.getRawX();
85 Slog.d(TAG_WM, "Button no longer pressed; dropping at " + newX + ","
93 Slog.d(TAG_WM, "Got UP on move channel; dropping at " + newX + "," + newY);
105 mDragDropController.handleMotionEvent(!mMuteInput /* keepHandling */, newX, newY);
H A DTaskPositioner.java146 final float newX = motionEvent.getRawX();
152 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
158 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
161 mDragEnded = notifyMoveLocked(newX, newY);
178 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
185 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
H A DDragDropController.java276 * @param newX X coordinate value in dp in the screen coordinate
279 void handleMotionEvent(boolean keepHandling, float newX, float newY) { argument
289 mDragState.notifyMoveLocked(newX, newY);
291 mDragState.notifyDropLocked(newX, newY);
/frameworks/base/core/java/android/view/
H A DIWindow.aidl56 void moved(int newX, int newY);
H A DViewRootImpl.java6881 public void dispatchMoved(int newX, int newY) { argument
6882 if (DEBUG_LAYOUT) Log.v(mTag, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
6884 PointF point = new PointF(newX, newY);
6886 newX = (int) (point.x + 0.5);
6889 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
7931 public void moved(int newX, int newY) { argument
7934 viewAncestor.dispatchMoved(newX, newY);
H A DView.java13671 final int newX = Math.round((range - extent)
13673 if (newX != getScrollX()) {
13675 setScrollX(newX);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipAccessibilityInteractionConnection.java93 int newX = arguments.getInt(
99 mTmpBounds.offsetTo(newX, newY);
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestIWindow.java48 public void moved(int newX, int newY) throws RemoteException { argument
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java56 public void moved(int newX, int newY) { argument
/frameworks/native/libs/input/
H A DInput.cpp358 float newX = matrix[0] * x + matrix[1] * y + matrix[2]; local
364 *outX = newX * newZ;
395 float newX, newY; local
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
399 mXOffset = newX - rawX;
/frameworks/base/core/java/android/widget/
H A DScroller.java530 * @param newX The new X offset as an absolute distance from the origin.
534 public void setFinalX(int newX) { argument
535 mFinalX = newX;
H A DOverScroller.java261 * @param newX The new X offset as an absolute distance from the origin.
272 public void setFinalX(int newX) { argument
273 mScrollerX.setFinalPosition(newX);
H A DStackView.java720 float newX = ev.getX(pointerIndex);
722 float deltaX = newX - mInitialX;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java338 final float newX = event.getX(newIndex);
340 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
443 protected void startExpandMotion(float newX, float newY, boolean startTracking, argument
447 mInitialTouchX = newX;
H A DNotificationPanelView.java1026 final float newX = event.getX(newIndex);
1030 mInitialTouchX = newX;
/frameworks/support/customview/src/main/java/androidx/customview/widget/
H A DViewDragHelper.java530 final int newX = mScroller.getCurrX();
532 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java319 public void moved(int newX, int newY) {
320 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, newX, newY);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp323 float newX, newY; local
324 newX = x * x_scale + y * x_ymix + x_offset;
327 x = newX;

Completed in 1100 milliseconds