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.java569 * @param newY The new Y offset as an absolute distance from the origin.
573 public void setFinalY(int newY) { argument
574 mFinalY = newY;
H A DOverScroller.java272 * @param newY The new Y offset as an absolute distance from the origin.
283 public void setFinalY(int newY) { argument
284 mScrollerY.setFinalPosition(newY);
/frameworks/base/libs/androidfw/
H A DInput.cpp452 float newY = SkScalarToFloat(point.fY); local
454 float newYOffset = newY - rawY;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4185 public void dispatchMoved(int newX, int newY) { argument
4186 if (DEBUG_LAYOUT) Log.v(TAG, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
4188 PointF point = new PointF(newX, newY);
4191 newY = (int) (point.y + 0.5);
4193 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
4849 public void moved(int newX, int newY) { argument
4852 viewAncestor.dispatchMoved(newX, newY);
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java2755 int newY = pinLocY(finalY + y);
2756 if (newY == finalY) return false;
2757 mScroller.setFinalY(newY);
6453 float newY = scaleCoordinate(scale,
6456 int y = Math.round(newY);
7002 // pin the newY to the WebView
8731 * @param newY Destination y position to which to scroll.
8734 private native boolean nativeScrollLayer(int nativeInstance, int layer, int newX, int newY); argument

Completed in 180 milliseconds