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

1 2 3

  /external/replicaisland/src/com/replica/replicaisland/
MovementComponent.java 51 float newY = object.getPosition().y + offsetY;
55 object.getPosition().set(newX, newY);
InputGameInterface.java 133 float newY;
137 newY = mDirectionalPad.getY() + (trackball.getY() * ROLL_FILTER * mMovementSensitivity);
142 newY = oldY + (trackball.getX() * ROLL_FILTER * mMovementSensitivity);
145 mDirectionalPad.press(gameTime, newX, 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) {
171 if (newY + newHeight < 0) {
177 if (newY > parentArea.height) {
196 control.setLocation(newX, newY);
201 control.setBounds(newX, newY, newWidth, newHeight);
  /packages/apps/DevCamera/src/com/android/devcamera/
PreviewOverlay.java 210 float newY = r1.centerX() * previewH;
215 RectF newR1 = new RectF(newX - dX * 0.5f, newY - dY * 0.5f, newX + dX * 0.5f, newY + dY * 0.5f);
227 newY = p[j].x * previewH;
229 canvas.drawCircle(newX, newY, dP, mPaint);
  /frameworks/base/core/java/android/view/
IWindow.aidl 54 void moved(int newX, int newY);
  /frameworks/base/services/core/java/com/android/server/wm/
TaskPositioner.java 144 final float newY = motionEvent.getRawY();
149 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
155 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
158 mDragEnded = notifyMoveLocked(newX, newY);
175 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
182 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
  /external/skia/include/codec/
SkCodec.h 616 void updateCurrScanline(int newY) { fCurrScanline = newY; }
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 384 int newY = 1 + RNG.nextInt(mYTileCount - 2);
385 newCoord = new Coordinate(newX, newY);
543 public Coordinate(int newX, int newY) {
545 y = newY;
  /frameworks/base/core/java/com/android/internal/view/
BaseIWindow.java 51 public void moved(int newX, int newY) {
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 413 int newY = mWidgetView.getTop() - mBackgroundPadding + yOffset + mWidgetPaddingTop;
418 if (newY < 0) {
420 mTopTouchRegionAdjustment = -newY;
424 if (newY + newHeight > mDragLayer.getHeight()) {
426 mBottomTouchRegionAdjustment = -(newY + newHeight - mDragLayer.getHeight());
435 lp.y = newY;
446 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
  /packages/apps/Launcher3/src/com/android/launcher3/
AppWidgetResizeFrame.java 425 int newY = mTmpPt[1] - mBackgroundPadding + mWidgetPadding.top;
430 if (newY < 0) {
432 mTopTouchRegionAdjustment = -newY;
436 if (newY + newHeight > mDragLayer.getHeight()) {
438 mBottomTouchRegionAdjustment = -(newY + newHeight - mDragLayer.getHeight());
447 lp.y = newY;
458 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
FolderPagedView.java 299 int newX, newY, rank;
317 newY = position / mGridCountX;
319 if (info.cellX != newX || info.cellY != newY || info.rank != rank) {
321 info.cellY = newY;
LauncherScroller.java 541 * @param newY The new Y offset as an absolute distance from the origin.
545 public void setFinalY(int newY) {
546 mFinalY = newY;
  /frameworks/native/libs/input/
Input.cpp 359 float newY = matrix[3] * x + matrix[4] * y + matrix[5];
365 *outY = newY * newZ;
395 float newX, newY;
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
400 mYOffset = newY - rawY;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 489 * @param newY The new Y offset as an absolute distance from the origin.
493 public void setFinalY(int newY) {
494 mFinalY = newY;
OverScroller.java 271 * @param newY The new Y offset as an absolute distance from the origin.
282 public void setFinalY(int newY) {
283 mScrollerY.setFinalPosition(newY);
    [all...]
  /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) {
202 fBottom += newY - fTop;
204 fTop = newY;
646 * Offset this rect such its new x() and y() will equal newX and newY.
648 void offsetTo(SkScalar newX, SkScalar newY) {
650 fBottom += newY - fTop;
652 fTop = newY;
  /packages/apps/Launcher3/src/com/android/launcher3/model/
GridSizeMigrationTask.java 565 int newX = Integer.MAX_VALUE, newY = Integer.MAX_VALUE;
574 newY = y;
581 if (newX < mTrgX && newY < mTrgY) {
587 if (newY != myY) {
588 me.cellY = newY;
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java 637 float newY = ev.getY(pointerIndex);
638 float deltaY = newY - mInitialY;
720 float newY = ev.getY(pointerIndex);
722 float deltaY = newY - mInitialY;
812 float newY = ev.getY(pointerIndex);
813 int deltaY = (int) (newY - mInitialY);
    [all...]
Scroller.java 543 * @param newY The new Y offset as an absolute distance from the origin.
547 public void setFinalY(int newY) {
548 mFinalY = newY;
OverScroller.java 277 * @param newY The new Y offset as an absolute distance from the origin.
288 public void setFinalY(int newY) {
289 mScrollerY.setFinalPosition(newY);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 749 int newY = drawEvent(canvas, event, xSquare, yTest, rightEdge, iter.hasNext(),
751 if (newY == yTest) {
755 yTest = newY;
762 int newY = drawEvent(canvas, event, xSquare, ySquare, rightEdge, iter.hasNext(),
764 if (newY == ySquare) {
768 ySquare = newY;
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob.cpp 322 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
328 newViewMatrix.getSkewX() * (newY - currentY) -
333 newViewMatrix.getScaleY() * (newY - currentY) -
337 *transY = newY - currentY;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelView.java 285 final float newY = event.getY(newIndex);
288 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
358 protected void startExpandMotion(float newX, float newY, boolean startTracking,
361 mInitialTouchY = newY;
    [all...]
  /external/deqp/modules/egl/
teglResizeTests.cpp 290 const int newY = yCorner == 0 ? 0 : newHeight - minHeight;
294 getSubregion(newSurface.getAccess(), newX, newY, minWidth, minHeight);

Completed in 593 milliseconds

1 2 3