HomeSort by relevance Sort by last modified time
    Searched refs:newY (Results 1 - 25 of 67) 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/chromium_org/third_party/WebKit/Source/core/svg/
SVGPoint.cpp 86 double newX, newY;
87 transform.map(static_cast<double>(x()), static_cast<double>(y()), newX, newY);
88 return FloatPoint::narrowPrecision(newX, newY);
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
TrackingInputHandler.java 113 private void moveCursor(float newX, float newY) {
117 if (newY < 0) newY = 0;
119 if (newY > mRenderData.imageHeight) newY = mRenderData.imageHeight;
120 mCursorPosition.set(newX, newY);
124 mViewer.injectMouseEvent((int) newX, (int) newY, BUTTON_UNDEFINED, false);
  /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);
  /frameworks/base/core/java/android/view/
IWindow.aidl 51 void moved(int newX, int 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 48 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 409 int newY = mTmpPt[1] - mBackgroundPadding + mWidgetPaddingTop;
414 if (newY < 0) {
416 mTopTouchRegionAdjustment = -newY;
420 if (newY + newHeight > mDragLayer.getHeight()) {
422 mBottomTouchRegionAdjustment = -(newY + newHeight - mDragLayer.getHeight());
431 lp.y = newY;
442 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
LauncherScroller.java 542 * @param newY The new Y offset as an absolute distance from the origin.
546 public void setFinalY(int newY) {
547 mFinalY = newY;
  /frameworks/native/libs/input/
Input.cpp 356 float newY = matrix[3] * x + matrix[4] * y + matrix[5];
362 *outY = newY * newZ;
392 float newX, newY;
395 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
397 mYOffset = newY - rawY;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 490 * @param newY The new Y offset as an absolute distance from the origin.
494 public void setFinalY(int newY) {
495 mFinalY = newY;
OverScroller.java 274 * @param newY The new Y offset as an absolute distance from the origin.
285 public void setFinalY(int newY) {
286 mScrollerY.setFinalPosition(newY);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkRect.h 189 * Offset this rect such its new x() and y() will equal newX and newY.
191 void offsetTo(int32_t newX, int32_t newY) {
193 fBottom += newY - fTop;
195 fTop = newY;
621 * Offset this rect such its new x() and y() will equal newX and newY.
623 void offsetTo(SkScalar newX, SkScalar newY) {
625 fBottom += newY - fTop;
627 fTop = newY;
  /external/skia/include/core/
SkRect.h 189 * Offset this rect such its new x() and y() will equal newX and newY.
191 void offsetTo(int32_t newX, int32_t newY) {
193 fBottom += newY - fTop;
195 fTop = newY;
623 * Offset this rect such its new x() and y() will equal newX and newY.
625 void offsetTo(SkScalar newX, SkScalar newY) {
627 fBottom += newY - fTop;
629 fTop = newY;
  /frameworks/base/core/java/android/widget/
StackView.java 638 float newY = ev.getY(pointerIndex);
639 float deltaY = newY - mInitialY;
721 float newY = ev.getY(pointerIndex);
723 float deltaY = newY - mInitialY;
813 float newY = ev.getY(pointerIndex);
814 int deltaY = (int) (newY - mInitialY);
    [all...]
Scroller.java 544 * @param newY The new Y offset as an absolute distance from the origin.
548 public void setFinalY(int newY) {
549 mFinalY = newY;
OverScroller.java 280 * @param newY The new Y offset as an absolute distance from the origin.
291 public void setFinalY(int newY) {
292 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/chromium_org/ui/file_manager/gallery/js/image_editor/
image_transform.js 503 var newY = this.viewport_.screenToImageY(newScreenY);
505 var clamppedY = ImageUtil.clamp(clipRect.top, newY + mouseBiasY, maxY);
521 var newY = this.viewport_.screenToImageY(newScreenY);
549 ImageUtil.clamp(clipRect.top, newY + mouseBiasY, maxY);
  /external/deqp/modules/egl/
teglResizeTests.cpp 275 const int newY = yCorner == 0 ? 0 : newHeight - minHeight;
279 newSurface.getSubAccess(newX, newY, minWidth, minHeight);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 276 * @param newY The new Y offset as an absolute distance from the origin.
287 public void setFinalY(int newY) {
288 mScrollerY.setFinalPosition(newY);
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 518 final int newY = mScroller.getCurrY();
519 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/widget/
ViewDragHelper.java 525 final int newY = mScroller.getCurrY();
526 mCallback.onViewPositionChanged(mCapturedView, newX, newY, newX - oldX, newY - oldY);
    [all...]

Completed in 2463 milliseconds

1 2 3