Searched defs:newX (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java51 public void moved(int newX, int newY) { argument
/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);
/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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java286 final float newX = event.getX(newIndex);
288 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
358 protected void startExpandMotion(float newX, float newY, boolean startTracking, argument
362 mInitialTouchX = newX;
/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;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java6004 public void dispatchMoved(int newX, int newY) { argument
6005 if (DEBUG_LAYOUT) Log.v(mTag, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
6007 PointF point = new PointF(newX, newY);
6009 newX = (int) (point.x + 0.5);
6012 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
7013 public void moved(int newX, int newY) { argument
7016 viewAncestor.dispatchMoved(newX, newY);

Completed in 214 milliseconds