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

1 2

  /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);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.cpp 95 double newX, newY;
96 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
97 return narrowPrecision(newX, newY);
102 double newX, newY;
103 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
104 return narrowPrecision(newX, newY);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 752 float newX = FastMath.cos(angle) * x - FastMath.sin(angle) * y;
754 x = newX;
  /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/Launcher2/src/com/android/launcher2/
SmoothPagedView.java 133 final int newX = getChildOffset(whichPage) - getRelativeChildOffset(whichPage);
134 final int delta = newX - mUnboundedScrollX;
AppWidgetResizeFrame.java 412 int newX = mWidgetView.getLeft() - mBackgroundPadding + xOffset + mWidgetPaddingLeft;
434 lp.x = newX;
445 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
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...]
CellLayout.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
SmoothPagedView.java 130 final int newX = getScrollForPage(whichPage);
131 final int delta = newX - mUnboundedScrollX;
AppWidgetResizeFrame.java 408 int newX = mTmpPt[0] - mBackgroundPadding + mWidgetPaddingLeft;
430 lp.x = newX;
441 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
CellLayout.java     [all...]
PagedView.java 514 int newX = 0;
516 newX = getScrollForPage(mCurrentPage);
518 scrollTo(newX, 0);
519 mScroller.setFinalX(newX);
    [all...]
  /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);
  /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;
  /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/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;
  /external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
AwtMouseInput.java 162 int newX = location.x;
170 newX - lastEventX,
175 lastEventX = 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/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-linux.c     [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 517 final int newX = mScroller.getCurrX();
519 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
    [all...]
  /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/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp     [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 447 int newX = offset - relOffset;
448 scrollTo(newX, 0);
449 mScroller.setFinalX(newX);
    [all...]
  /prebuilts/devtools/tools/lib/
chimpchat.jar 

Completed in 532 milliseconds

1 2