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

/frameworks/base/core/java/android/view/
H A DIWindow.aidl51 void moved(int newX, int newY);
H A DViewRootImpl.java5612 public void dispatchMoved(int newX, int newY) { argument
5613 if (DEBUG_LAYOUT) Log.v(TAG, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
5615 PointF point = new PointF(newX, newY);
5618 newY = (int) (point.y + 0.5);
5620 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
6497 public void moved(int newX, int newY) { argument
6500 viewAncestor.dispatchMoved(newX, newY);
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java48 public void moved(int newX, int newY) { argument
/frameworks/native/libs/input/
H A DInput.cpp356 float newY = matrix[3] * x + matrix[4] * y + matrix[5]; local
362 *outY = newY * newZ;
392 float newX, newY; local
395 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
397 mYOffset = newY - rawY;
/frameworks/base/core/java/android/widget/
H A DStackView.java638 float newY = ev.getY(pointerIndex);
639 float deltaY = newY - mInitialY;
721 float newY = ev.getY(pointerIndex);
723 float deltaY = newY - mInitialY;
813 float newY = ev.getY(pointerIndex);
814 int deltaY = (int) (newY - mInitialY);
H A DScroller.java544 * @param newY The new Y offset as an absolute distance from the origin.
548 public void setFinalY(int newY) { argument
549 mFinalY = newY;
H A DOverScroller.java280 * @param newY The new Y offset as an absolute distance from the origin.
291 public void setFinalY(int newY) { argument
292 mScrollerY.setFinalPosition(newY);
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java518 final int newY = mScroller.getCurrY();
519 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java273 final float newY = event.getY(newIndex);
277 mInitialTouchY = newY;
H A DNotificationPanelView.java760 final float newY = event.getY(newIndex);
764 mInitialTouchY = newY;
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java275 public void moved(int newX, int newY) {
276 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, newX, newY);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp223 float newX, newY; local
225 newY = x * y_xmix + y * y_scale + y_offset;
228 y = newY;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java715 final float newY = motionEvent.getRawY();
727 mDragState.notifyMoveLw(newX, newY);
733 + newX + "," + newY);
735 endDrag = mDragState.notifyDropLw(newX, newY);

Completed in 328 milliseconds