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

/frameworks/base/core/java/android/view/
H A DIWindow.aidl50 void moved(int newX, int newY);
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/com/android/internal/view/
H A DBaseIWindow.java48 public void moved(int newX, int newY) { argument
/frameworks/base/core/java/android/widget/
H A DStackView.java631 float newY = ev.getY(pointerIndex);
632 float deltaY = newY - mInitialY;
714 float newY = ev.getY(pointerIndex);
716 float deltaY = newY - mInitialY;
806 float newY = ev.getY(pointerIndex);
807 int deltaY = (int) (newY - mInitialY);
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/service/wallpaper/
H A DWallpaperService.java264 public void moved(int newX, int newY) {
265 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, 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
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java681 final float newY = motionEvent.getRawY();
693 mDragState.notifyMoveLw(newX, newY);
699 + newX + "," + newY);
701 endDrag = mDragState.notifyDropLw(newX, newY);

Completed in 1472 milliseconds