HomeSort by relevance Sort by last modified time
    Searched refs:newX (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatPoint.cpp 91 double newX, newY;
92 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
93 return narrowPrecision(newX, newY);
98 double newX, newY;
99 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
100 return narrowPrecision(newX, newY);
  /external/replicaisland/src/com/replica/replicaisland/
MovementComponent.java 45 float newX = object.getPosition().x + offsetX;
55 object.getPosition().set(newX, newY);
InputGameInterface.java 132 float newX;
136 newX = mDirectionalPad.getX() + (trackball.getX() * ROLL_FILTER * mMovementSensitivity);
141 newX = oldX + (trackball.getX() * ROLL_FILTER * mMovementSensitivity);
145 mDirectionalPad.press(gameTime, newX, newY);
  /frameworks/base/core/java/android/view/
IWindow.aidl 50 void moved(int newX, int newY);
  /packages/apps/Launcher2/src/com/android/launcher2/
SmoothPagedView.java 133 final int newX = getChildOffset(whichPage) - getRelativeChildOffset(whichPage);
134 final int delta = newX - mUnboundedScrollX;
PagedView.java 308 int newX = 0;
312 newX = offset - relOffset;
314 scrollTo(newX, 0);
315 mScroller.setFinalX(newX);
595 int newX = getChildOffset(newCurrentPage) - getRelativeChildOffset(newCurrentPage);
596 int delta = newX - getScrollX();
    [all...]
AppWidgetResizeFrame.java 412 int newX = mWidgetView.getLeft() - mBackgroundPadding + xOffset + mWidgetPaddingLeft;
434 lp.x = newX;
445 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
  /packages/apps/Launcher3/src/com/android/launcher3/
SmoothPagedView.java 133 final int newX = getScrollForPage(whichPage);
134 final int delta = newX - mUnboundedScrollX;
PagedView.java 512 int newX = 0;
514 newX = getScrollForPage(mCurrentPage);
516 scrollTo(newX, 0);
517 mScroller.setFinalX(newX);
    [all...]
AppWidgetResizeFrame.java 410 int newX = mTmpPt[0] - mBackgroundPadding + mWidgetPaddingLeft;
432 lp.x = newX;
443 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
  /external/jmonkeyengine/engine/src/android/com/jme3/input/android/
AndroidInput.java 391 int newX;
403 newX = this.getWidth() - (int) event.getX();
405 newX = (int) event.getX();
417 btn = new MouseButtonEvent(0, true, newX, newY);
427 btn = new MouseButtonEvent(0, false, newX, newY);
439 dx = newX - lastX;
445 MouseMotionEvent mot = new MouseMotionEvent(newX, newY, dx, dy, 0, 0);
448 lastX = newX;
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 383 int newX = 1 + RNG.nextInt(mXTileCount - 2);
385 newCoord = new Coordinate(newX, newY);
543 public Coordinate(int newX, int newY) {
544 x = newX;
  /frameworks/base/core/java/com/android/internal/view/
BaseIWindow.java 48 public void moved(int newX, int newY) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) {
196 control.setLocation(newX, newY);
201 control.setBounds(newX, newY, newWidth, newHeight);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
AwtMouseInput.java 162 int newX = location.x;
170 newX - lastEventX,
175 lastEventX = newX;
  /external/chromium_org/third_party/skia/src/core/
SkScan_Path.cpp 154 SkFixed newX;
161 newX = currE->fX;
166 newX = currE->fX;
173 newX = currE->fX + currE->fDX;
174 currE->fX = newX;
176 if (newX < prevX) { // ripple currE backwards until it is x-sorted
179 prevX = newX;
  /external/skia/src/core/
SkScan_Path.cpp 154 SkFixed newX;
161 newX = currE->fX;
166 newX = currE->fX;
173 newX = currE->fX + currE->fDX;
174 currE->fX = newX;
176 if (newX < prevX) { // ripple currE backwards until it is x-sorted
179 prevX = newX;
  /external/chromium_org/third_party/skia/include/core/
SkRect.h 175 * Offset this rect such its new x() and y() will equal newX and newY.
177 void offsetTo(int32_t newX, int32_t newY) {
178 fRight += newX - fLeft;
180 fLeft = newX;
591 * Offset this rect such its new x() and y() will equal newX and newY.
593 void offsetTo(SkScalar newX, SkScalar newY) {
594 fRight += newX - fLeft;
596 fLeft = newX;
  /external/skia/include/core/
SkRect.h 175 * Offset this rect such its new x() and y() will equal newX and newY.
177 void offsetTo(int32_t newX, int32_t newY) {
178 fRight += newX - fLeft;
180 fLeft = newX;
591 * Offset this rect such its new x() and y() will equal newX and newY.
593 void offsetTo(SkScalar newX, SkScalar newY) {
594 fRight += newX - fLeft;
596 fLeft = newX;
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 185 float newX = mLastX + deltaX;
192 canvas.drawLine(mLastX, mLastValues[k], newX, v, paint);
  /frameworks/native/libs/input/
Input.cpp 424 float newX = matrix[0] * x + matrix[1] * y + matrix[2];
430 *outX = newX * newZ;
461 float newX, newY;
464 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
465 mXOffset = newX - rawX;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 254 int newX = mScrollX;
256 if (oldX > 0 && newX == 0 || oldX < limit && newX == limit) {
258 if (newX == limit) v = -v;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 752 float newX = FastMath.cos(angle) * x - FastMath.sin(angle) * y;
754 x = newX;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 477 * @param newX The new X offset as an absolute distance from the origin.
481 public void setFinalX(int newX) {
482 mFinalX = newX;
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 447 int newX = offset - relOffset;
448 scrollTo(newX, 0);
449 mScroller.setFinalX(newX);
    [all...]

Completed in 1230 milliseconds

1 2 3