Searched refs:newX (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);
5721 newX = (int) (point.x + 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.cpp358 float newX = matrix[0] * x + matrix[1] * y + matrix[2]; local
364 *outX = newX * newZ;
395 float newX, newY; local
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
399 mXOffset = newX - rawX;
/frameworks/base/core/java/android/widget/
H A DScroller.java530 * @param newX The new X offset as an absolute distance from the origin.
534 public void setFinalX(int newX) { argument
535 mFinalX = newX;
H A DOverScroller.java259 * @param newX The new X offset as an absolute distance from the origin.
270 public void setFinalX(int newX) { argument
271 mScrollerX.setFinalPosition(newX);
H A DStackView.java721 float newX = ev.getX(pointerIndex);
723 float deltaX = newX - mInitialX;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java282 final float newX = event.getX(newIndex);
284 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
354 protected void startExpandMotion(float newX, float newY, boolean startTracking, argument
358 mInitialTouchX = newX;
H A DNotificationPanelView.java882 final float newX = event.getX(newIndex);
886 mInitialTouchX = newX;
/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.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.java737 final float newX = motionEvent.getRawX();
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
239 newX = x * x_scale + y * x_ymix + x_offset;
242 x = newX;

Completed in 4795 milliseconds