Searched refs:newY (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/view/
H A DIWindow.aidl54 void moved(int newX, int newY);
H A DViewRootImpl.java6435 public void dispatchMoved(int newX, int newY) { argument
6436 if (DEBUG_LAYOUT) Log.v(mTag, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
6438 PointF point = new PointF(newX, newY);
6441 newY = (int) (point.y + 0.5);
6443 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
7452 public void moved(int newX, int newY) { argument
7455 viewAncestor.dispatchMoved(newX, newY);
H A DView.java12841 final int newY = Math.round((range - extent)
12843 if (newY != getScrollY()) {
12845 setScrollY(newY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipAccessibilityInteractionConnection.java95 int newY = arguments.getInt(
99 mTmpBounds.offsetTo(newX, newY);
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestIWindow.java46 public void moved(int newX, int newY) throws RemoteException { argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskPositioner.java154 final float newY = motionEvent.getRawY();
159 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
165 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
168 mDragEnded = notifyMoveLocked(newX, newY);
185 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
192 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
H A DWindowManagerService.java776 final float newY = motionEvent.getRawY();
799 + newX + "," + newY);
802 endDrag = mDragState.notifyDropLw(newX, newY);
807 mDragState.notifyMoveLw(newX, newY);
814 + newX + "," + newY);
817 endDrag = mDragState.notifyDropLw(newX, newY);
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java54 public void moved(int newX, int newY) { argument
/frameworks/native/libs/input/
H A DInput.cpp359 float newY = matrix[3] * x + matrix[4] * y + matrix[5]; local
365 *outY = newY * newZ;
395 float newX, newY; local
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
400 mYOffset = newY - rawY;
/frameworks/base/core/java/android/widget/
H A DStackView.java637 float newY = ev.getY(pointerIndex);
638 float deltaY = newY - mInitialY;
720 float newY = ev.getY(pointerIndex);
722 float deltaY = newY - mInitialY;
812 float newY = ev.getY(pointerIndex);
813 int deltaY = (int) (newY - mInitialY);
H A DScroller.java543 * @param newY The new Y offset as an absolute distance from the origin.
547 public void setFinalY(int newY) { argument
548 mFinalY = newY;
H A DOverScroller.java279 * @param newY The new Y offset as an absolute distance from the origin.
290 public void setFinalY(int newY) { argument
291 mScrollerY.setFinalPosition(newY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java322 final float newY = event.getY(newIndex);
325 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
413 protected void startExpandMotion(float newX, float newY, boolean startTracking, argument
416 mInitialTouchY = newY;
H A DNotificationPanelView.java937 final float newY = event.getY(newIndex);
941 mInitialTouchY = newY;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DViewDragHelper.java520 final int newY = mScroller.getCurrY();
521 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java297 public void moved(int newX, int newY) {
298 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, newX, newY);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp294 float newX, newY; local
296 newY = x * y_xmix + y * y_scale + y_offset;
299 y = newY;

Completed in 562 milliseconds