Searched defs:newY (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java48 public void moved(int newX, int newY) { argument
/frameworks/base/core/java/android/widget/
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/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/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/core/java/android/view/
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);

Completed in 186 milliseconds