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

1 2

  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.cpp 60 double newX, newY;
61 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
62 return narrowPrecision(newX, newY);
67 double newX, newY;
68 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
69 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);
  /sdk/chimpchat/src/com/android/chimpchat/adb/
LinearInterpolator.java 120 float newX = lerp(start.getX(), end.getX(), amount * i);
123 callback.step(new Point(Math.round(newX), Math.round(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/base/libs/androidfw/
Input.cpp 451 float newX = SkScalarToFloat(point.fX);
453 float newXOffset = 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 410 int newX = mWidgetView.getLeft() - mBackgroundPadding + xOffset + mWidgetPaddingLeft;
432 lp.x = newX;
443 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
PagedView.java 302 int newX = offset - relOffset;
303 scrollTo(newX, 0);
304 mScroller.setFinalX(newX);
572 int newX = getChildOffset(newCurrentPage) - getRelativeChildOffset(newCurrentPage);
573 int delta = newX - getScrollX();
    [all...]
CellLayout.java     [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectLoupe.java 150 int newX = -1;
161 newX = x;
165 if (newX != -1) {
166 mModel.setCrosshairLocation(newX, newY);
  /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/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 149 SkFixed newX;
156 newX = currE->fX;
161 newX = currE->fX;
168 newX = currE->fX + currE->fDX;
169 currE->fX = newX;
171 if (newX < prevX) { // ripple currE backwards until it is x-sorted
174 prevX = newX;
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-linux.c     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 253 int newX = mScrollX;
255 if (oldX > 0 && newX == 0 || oldX < limit && newX == limit) {
257 if (newX == limit) v = -v;
  /external/webkit/Source/WebCore/rendering/
RenderBox.cpp     [all...]
RenderLayer.cpp     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java 429 int newX = offset - relOffset;
430 scrollTo(newX, 0);
431 mScroller.setFinalX(newX);
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 677 final float newX = motionEvent.getRawX();
690 mDragState.notifyMoveLw(newX, newY);
696 + newX + "," + newY);
698 endDrag = mDragState.notifyDropLw(newX, newY);
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 884 milliseconds

1 2