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

1 2 3

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
IFrameContentLayerAndroid.cpp 19 SkScalar newX = SkScalarPin(x, scrollBounds.x(), scrollBounds.width());
22 if (newX == m_iframeScrollOffset.x() && newY == m_iframeScrollOffset.y())
24 newX = newX - m_iframeScrollOffset.x();
26 setScrollOffset(IntPoint(newX, newY));
ScrollableLayerAndroid.cpp 21 SkScalar newX = SkScalarPin(x, scrollBounds.x(), scrollBounds.width());
24 if (newX == getScrollOffset().x() && newY == getScrollOffset().y())
26 setScrollOffset(IntPoint(newX, newY));
  /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);
  /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);
  /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/skia/legacy/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/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/include/core/
SkRect.h 164 * Offset this rect such its new x() and y() will equal newX and newY.
166 void offsetTo(int32_t newX, int32_t newY) {
167 fRight += newX - fLeft;
169 fLeft = newX;
580 * Offset this rect such its new x() and y() will equal newX and newY.
582 void offsetTo(SkScalar newX, SkScalar newY) {
583 fRight += newX - fLeft;
585 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);
  /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/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/core/java/android/widget/
Scroller.java 556 * @param newX The new X offset as an absolute distance from the origin.
560 public void setFinalX(int newX) {
561 mFinalX = newX;
OverScroller.java 254 * @param newX The new X offset as an absolute distance from the origin.
265 public void setFinalX(int newX) {
266 mScrollerX.setFinalPosition(newX);
    [all...]
  /frameworks/base/libs/androidfw/
Input.cpp 455 float newX = SkScalarToFloat(point.fX);
457 float newXOffset = newX - rawX;

Completed in 633 milliseconds

1 2 3