Searched defs:newX (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.java528 * @param newX The new X offset as an absolute distance from the origin.
532 public void setFinalX(int newX) { argument
533 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/base/libs/androidfw/
H A DInput.cpp451 float newX = SkScalarToFloat(point.fX); local
453 float newXOffset = newX - rawX;
/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);
4190 newX = (int) (point.x + 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.java6451 float newX = scaleCoordinate(scale,
6455 int x = Math.round(newX);
6988 // pin the newX to the WebView
8730 * @param newX Destination x position to which to scroll.
8734 private native boolean nativeScrollLayer(int nativeInstance, int layer, int newX, int newY); argument

Completed in 386 milliseconds