Searched defs:newX (Results 1 - 5 of 5) 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.java556 * @param newX The new X offset as an absolute distance from the origin.
560 public void setFinalX(int newX) { argument
561 mFinalX = newX;
H A DOverScroller.java254 * @param newX The new X offset as an absolute distance from the origin.
265 public void setFinalX(int newX) { argument
266 mScrollerX.setFinalPosition(newX);
/frameworks/native/libs/input/
H A DInput.cpp424 float newX = matrix[0] * x + matrix[1] * y + matrix[2]; local
430 *outX = newX * newZ;
461 float newX, newY; local
464 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
465 mXOffset = newX - rawX;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5383 public void dispatchMoved(int newX, int newY) { argument
5384 if (DEBUG_LAYOUT) Log.v(TAG, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
5386 PointF point = new PointF(newX, newY);
5388 newX = (int) (point.x + 0.5);
5391 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
6124 public void moved(int newX, int newY) { argument
6127 viewAncestor.dispatchMoved(newX, newY);

Completed in 4607 milliseconds