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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatPoint.cpp 91 double newX, newY;
92 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
93 return narrowPrecision(newX, newY);
98 double newX, newY;
99 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
100 return narrowPrecision(newX, newY);
  /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);
  /frameworks/base/core/java/android/view/
IWindow.aidl 50 void moved(int newX, int newY);
  /external/jmonkeyengine/engine/src/android/com/jme3/input/android/
AndroidInput.java 392 int newY;
409 newY = this.getHeight() - (int) event.getY();
411 newY = (int) event.getY();
417 btn = new MouseButtonEvent(0, true, newX, newY);
427 btn = new MouseButtonEvent(0, false, newX, newY);
440 dy = newY - lastY;
445 MouseMotionEvent mot = new MouseMotionEvent(newX, newY, dx, dy, 0, 0);
449 lastY = 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) {
  /external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
AwtMouseInput.java 163 int newY = location.y;
171 lastEventY - newY,
176 lastEventY = 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 411 int newY = mTmpPt[1] - mBackgroundPadding + mWidgetPaddingTop;
416 if (newY < 0) {
418 mTopTouchRegionAdjustment = -newY;
422 if (newY + newHeight > mDragLayer.getHeight()) {
424 mBottomTouchRegionAdjustment = -(newY + newHeight - mDragLayer.getHeight());
433 lp.y = newY;
444 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
  /external/chromium_org/third_party/skia/include/core/
SkRect.h 175 * Offset this rect such its new x() and y() will equal newX and newY.
177 void offsetTo(int32_t newX, int32_t newY) {
179 fBottom += newY - fTop;
181 fTop = newY;
591 * Offset this rect such its new x() and y() will equal newX and newY.
593 void offsetTo(SkScalar newX, SkScalar newY) {
595 fBottom += newY - fTop;
597 fTop = newY;
  /external/skia/include/core/
SkRect.h 175 * Offset this rect such its new x() and y() will equal newX and newY.
177 void offsetTo(int32_t newX, int32_t newY) {
179 fBottom += newY - fTop;
181 fTop = newY;
591 * Offset this rect such its new x() and y() will equal newX and newY.
593 void offsetTo(SkScalar newX, SkScalar newY) {
595 fBottom += newY - fTop;
597 fTop = newY;
  /frameworks/native/libs/input/
Input.cpp 425 float newY = matrix[3] * x + matrix[4] * y + matrix[5];
431 *outY = newY * newZ;
461 float newX, newY;
464 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
466 mYOffset = newY - rawY;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 753 float newY = FastMath.sin(angle) * x + FastMath.cos(angle) * y;
755 y = newY;
  /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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelView.java 420 final float newY = event.getY(newIndex);
421 final float newRawY = newY + rawDelta;
424 mInitialTouchY = newY;
  /frameworks/base/core/java/android/widget/
StackView.java 631 float newY = ev.getY(pointerIndex);
632 float deltaY = newY - mInitialY;
714 float newY = ev.getY(pointerIndex);
716 float deltaY = newY - mInitialY;
806 float newY = ev.getY(pointerIndex);
807 int deltaY = (int) (newY - mInitialY);
    [all...]
Scroller.java 569 * @param newY The new Y offset as an absolute distance from the origin.
573 public void setFinalY(int newY) {
574 mFinalY = newY;
OverScroller.java 272 * @param newY The new Y offset as an absolute distance from the origin.
283 public void setFinalY(int newY) {
284 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...]
  /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...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 264 public void moved(int newX, int newY) {
265 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, newX, newY);
    [all...]

Completed in 589 milliseconds

1 2