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

/frameworks/base/core/java/android/view/
H A DIWindow.aidl51 void moved(int newX, int newY);
H A DViewRootImpl.java5716 public void dispatchMoved(int newX, int newY) { argument
5717 if (DEBUG_LAYOUT) Log.v(TAG, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
5719 PointF point = new PointF(newX, newY);
5722 newY = (int) (point.y + 0.5);
5724 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
6696 public void moved(int newX, int newY) { argument
6699 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/native/libs/input/
H A DInput.cpp359 float newY = matrix[3] * x + matrix[4] * y + matrix[5]; local
365 *outY = newY * newZ;
395 float newX, newY; local
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
400 mYOffset = newY - rawY;
/frameworks/base/core/java/android/widget/
H A DStackView.java637 float newY = ev.getY(pointerIndex);
638 float deltaY = newY - mInitialY;
720 float newY = ev.getY(pointerIndex);
722 float deltaY = newY - mInitialY;
812 float newY = ev.getY(pointerIndex);
813 int deltaY = (int) (newY - mInitialY);
H A DScroller.java543 * @param newY The new Y offset as an absolute distance from the origin.
547 public void setFinalY(int newY) { argument
548 mFinalY = newY;
H A DOverScroller.java277 * @param newY The new Y offset as an absolute distance from the origin.
288 public void setFinalY(int newY) { argument
289 mScrollerY.setFinalPosition(newY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java281 final float newY = event.getY(newIndex);
284 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
354 protected void startExpandMotion(float newX, float newY, boolean startTracking, argument
357 mInitialTouchY = newY;
H A DNotificationPanelView.java881 final float newY = event.getY(newIndex);
885 mInitialTouchY = newY;
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java518 final int newY = mScroller.getCurrY();
519 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java280 public void moved(int newX, int newY) {
281 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, newX, newY);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java738 final float newY = motionEvent.getRawY();
761 + newX + "," + newY);
763 endDrag = mDragState.notifyDropLw(newX, newY);
768 mDragState.notifyMoveLw(newX, newY);
775 + newX + "," + newY);
777 endDrag = mDragState.notifyDropLw(newX, newY);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp238 float newX, newY; local
240 newY = x * y_xmix + y * y_scale + y_offset;
243 y = newY;

Completed in 8224 milliseconds