Searched refs:newX (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/view/
H A DIWindow.aidl50 void moved(int newX, int newY);
H A DViewRootImpl.java5453 public void dispatchMoved(int newX, int newY) { argument
5454 if (DEBUG_LAYOUT) Log.v(TAG, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
5456 PointF point = new PointF(newX, newY);
5458 newX = (int) (point.x + 0.5);
5461 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
6194 public void moved(int newX, int newY) { argument
6197 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.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/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java447 int newX = offset - relOffset;
448 scrollTo(newX, 0);
449 mScroller.setFinalX(newX);
1537 int newX = getViewportOffsetX() + getChildOffset(i + shiftDelta);
1546 v.setTranslationX(oldX - newX);
1875 final int newX = getChildOffset(whichPage) - getRelativeChildOffset(whichPage);
1876 int delta = newX - mUnboundedScrollX;
1921 int newX = getChildOffset(whichPage) - getRelativeChildOffset(whichPage);
1923 final int delta = newX - sX;
2481 int newX
[all...]
/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);
H A DStackView.java715 float newX = ev.getX(pointerIndex);
717 float deltaX = newX - mInitialX;
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java517 final int newX = mScroller.getCurrX();
519 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
/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/services/java/com/android/server/wm/
H A DWindowManagerService.java621 final float newX = motionEvent.getRawX();
634 mDragState.notifyMoveLw(newX, newY);
640 + newX + "," + newY);
642 endDrag = mDragState.notifyDropLw(newX, newY);

Completed in 450 milliseconds