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

1 2

  /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/webkit/Source/WebCore/platform/graphics/android/
ScrollableLayerAndroid.cpp 18 SkScalar newY = SkScalarPin(y, 0, scrollBounds.fBottom);
20 if (newX == scrollBounds.fLeft && newY == scrollBounds.fTop)
23 setPosition(m_scrollLimits.fLeft - newX, m_scrollLimits.fTop - 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);
  /sdk/chimpchat/src/com/android/chimpchat/adb/
LinearInterpolator.java 121 float newY = lerp(start.getY(), end.getY(), amount * i);
123 callback.step(new Point(Math.round(newX), Math.round(newY)));
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 319 int newY = mWidgetView.getTop() - mBackgroundPadding + yOffset + mWidgetPaddingTop;
322 if (newY < 0) {
323 newHeight -= -newY;
324 newY = 0;
326 if (newY + newHeight > mDragLayer.getHeight()) {
327 newHeight -= newY + newHeight - mDragLayer.getHeight();
334 lp.y = newY;
345 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
CellLayout.java     [all...]
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 369 int newY = 1 + RNG.nextInt(mYTileCount - 2);
370 newCoord = new Coordinate(newX, newY);
535 public Coordinate(int newX, int newY) {
537 y = newY;
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectLoupe.java 146 int newY = -1;
157 newY = y;
161 mModel.setCrosshairLocation(newX, newY);
  /frameworks/base/core/java/android/widget/
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;
StackView.java 628 float newY = ev.getY(pointerIndex);
629 float deltaY = newY - mInitialY;
711 float newY = ev.getY(pointerIndex);
713 float deltaY = newY - mInitialY;
803 float newY = ev.getY(pointerIndex);
804 int deltaY = (int) (newY - mInitialY);
    [all...]
OverScroller.java 270 * @param newY The new Y offset as an absolute distance from the origin.
281 public void setFinalY(int newY) {
282 mScrollerY.setFinalPosition(newY);
    [all...]
  /external/webkit/Source/WebKit/android/nav/
FindCanvas.cpp 324 SkPoint newY;
325 getTotalMatrix().mapXY(0, y, &newY);
327 int newYInt = SkScalarRound(newY.fY);
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 695 int newY = drawEvent(canvas, event, xSquare, ySquare, rightEdge, iter.hasNext());
696 if (newY == ySquare) {
700 ySquare = newY;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
MultiWaveView.java 730 float newY = singleTarget ? limitY : mTargetDrawables.get(activeTarget).getY();
731 moveHandleTo(newX, newY, false);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBox.cpp     [all...]
RenderBlock.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm 574 float newY = max<float>(min<float>(position.y(), m_scrollableArea->contentsSize().height() - m_scrollableArea->visibleHeight()), 0);
576 return FloatPoint(newX, newY);
    [all...]
  /frameworks/base/libs/ui/
Input.cpp 559 float newY = SkScalarToFloat(point.fY);
561 float newYOffset = newY - rawY;
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java     [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 583 final float newY = event.getRawY();
595 mDragState.notifyMoveLw(newX, newY);
601 + newX + "," + newY);
603 endDrag = mDragState.notifyDropLw(newX, newY);
    [all...]
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 503 milliseconds

1 2