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

1 2 3 4 5

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYPlotZoomPan.java 265 PointF newX = new PointF();
267 calculatePan(oldFirstFinger, newX, true);
269 super.setDomainBoundaries(newX.x, newX.y, BoundaryMode.FIXED);
270 lastMinX = newX.x;
271 lastMaxX = newX.y;
274 calculatePan(oldFirstFinger, newX, false);
276 super.setRangeBoundaries(newX.x, newX.y, BoundaryMode.FIXED);
277 lastMinY = newX.x
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
MoveScreensaverRunnable.java 108 final float newX = getRandomPoint(smallestDim - mSaverView.getWidth());
111 mSaverView.setX(newX);
119 final float newX = getRandomPoint(mContentView.getWidth() - mSaverView.getWidth());
138 mSaverView.setX(newX);
  /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);
  /packages/apps/DevCamera/src/com/android/devcamera/
PreviewOverlay.java 211 float newX = (1 - r1.centerY()) * previewW;
215 RectF newR1 = new RectF(newX - dX * 0.5f, newY - dY * 0.5f, newX + dX * 0.5f, newY + dY * 0.5f);
228 newX = (1 - p[j].y) * previewW;
229 canvas.drawCircle(newX, newY, dP, mPaint);
  /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/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
TilingFunctions.h 422 uint32_t newX, newY, newSampleX, newSampleY;
426 newX = x;
435 newX = pdep_u32(x, xMask);
447 newX = pdep_u32(x, mask);
460 newX = pdep_u32(x, xMask);
472 newX = pdep_u32(x, mask);
480 newX = newY = 0;
484 x = newX | (newSampleX << 1);
  /frameworks/base/core/java/android/view/
IWindow.aidl 54 void moved(int newX, int newY);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
PipAccessibilityInteractionConnection.java 93 int newX = arguments.getInt(
99 mTmpBounds.offsetTo(newX, newY);
  /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/services/tests/servicestests/src/com/android/server/wm/
TestIWindow.java 46 public void moved(int newX, int newY) throws RemoteException {
  /external/skia/src/core/
SkScan_Path.cpp 135 SkFixed newX;
142 newX = currE->fX;
147 newX = currE->fX;
154 newX = currE->fX + currE->fDX;
155 currE->fX = newX;
157 if (newX < prevX) { // ripple currE backwards until it is x-sorted
160 prevX = newX;
  /frameworks/base/services/core/java/com/android/server/wm/
TaskPositioner.java 153 final float newX = motionEvent.getRawX();
159 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
165 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
168 mDragEnded = notifyMoveLocked(newX, newY);
185 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
192 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
  /frameworks/base/core/java/com/android/internal/view/
BaseIWindow.java 54 public void moved(int newX, int newY) {
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
GestureBot.java 71 int newX = startCoord.centerX() + (int) (diffX / TRAVELING_STEPS * i);
73 points[i + LONGPRESS_STEPS] = new Point(newX, newY);
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
WavePlotView.java 317 float newX = (float) (w * currentGridMs / windowMs);
318 canvas.drawLine(newX, 0, newX, h, mPaintGrid);
325 myPath.moveTo(newX, h);
326 myPath.lineTo(newX, h / 2);
  /frameworks/native/libs/input/
Input.cpp 358 float newX = matrix[0] * x + matrix[1] * y + matrix[2];
364 *outX = newX * newZ;
395 float newX, newY;
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
399 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;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderPagedView.java 336 int newX, newY, rank;
355 newX = position % mGridCountX;
358 if (info.cellX != newX || info.cellY != newY || info.rank != rank) {
359 info.cellX = newX;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 476 * @param newX The new X offset as an absolute distance from the origin.
480 public void setFinalX(int newX) {
481 mFinalX = newX;
  /external/skia/include/core/
SkRect.h 198 * Offset this rect such its new x() and y() will equal newX and newY.
200 void offsetTo(int32_t newX, int32_t newY) {
201 fRight += newX - fLeft;
203 fLeft = newX;
666 * Offset this rect such its new x() and y() will equal newX and newY.
668 void offsetTo(SkScalar newX, SkScalar newY) {
669 fRight += newX - fLeft;
671 fLeft = newX;
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 355 int newX = 0;
357 newX = getScrollForPage(mCurrentPage);
359 scrollTo(newX, 0);
360 mScroller.setFinalX(newX);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/model/
GridSizeMigrationTask.java 549 int newX = Integer.MAX_VALUE, newY = Integer.MAX_VALUE;
557 newX = x;
565 if (newX < mTrgX && newY < mTrgY) {
567 if (newX != myX) {
568 me.cellX = newX;
    [all...]

Completed in 914 milliseconds

1 2 3 4 5