Searched refs:newY (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DIFrameContentLayerAndroid.cpp20 SkScalar newY = SkScalarPin(y, scrollBounds.y(), scrollBounds.height()); local
22 if (newX == m_iframeScrollOffset.x() && newY == m_iframeScrollOffset.y())
25 newY = newY - m_iframeScrollOffset.y();
26 setScrollOffset(IntPoint(newX, newY));
H A DScrollableLayerAndroid.cpp22 SkScalar newY = SkScalarPin(y, scrollBounds.y(), scrollBounds.height()); local
24 if (newX == getScrollOffset().x() && newY == getScrollOffset().y())
26 setScrollOffset(IntPoint(newX, newY));
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.cpp60 double newX, newY; local
61 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); local
62 return narrowPrecision(newX, newY);
67 double newX, newY; local
68 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); local
69 return narrowPrecision(newX, newY);
/external/replicaisland/src/com/replica/replicaisland/
H A DMovementComponent.java51 float newY = object.getPosition().y + offsetY;
55 object.getPosition().set(newX, newY);
H A DInputGameInterface.java133 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/
H A DButtonPropertyEditorPresentationImpl.java167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) { argument
171 if (newY + newHeight < 0) {
177 if (newY > parentArea.height) {
196 control.setLocation(newX, newY);
201 control.setBounds(newX, newY, newWidth, newHeight);
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidInput.java392 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;
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
H A DAwtMouseInput.java163 int newY = location.y;
171 lastEventY - newY,
176 lastEventY = newY;
/external/skia/include/core/
H A DSkRect.h164 * Offset this rect such its new x() and y() will equal newX and newY.
166 void offsetTo(int32_t newX, int32_t newY) { argument
168 fBottom += newY - fTop;
170 fTop = newY;
580 * Offset this rect such its new x() and y() will equal newX and newY.
582 void offsetTo(SkScalar newX, SkScalar newY) {
584 fBottom += newY - fTop;
586 fTop = newY;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java753 float newY = FastMath.sin(angle) * x + FastMath.cos(angle) * y;
755 y = newY;
/external/webkit/Source/WebCore/rendering/
H A DRenderBox.cpp1510 int newY = y(); local
1513 if (rect.x() != newX || rect.y() != newY) {
1519 m_frameRect = IntRect(newX, newY, newWidth, newHeight);
3190 int newY = yPos; local
3193 newY += y();
3212 return renderer->positionForCoordinates(xPos + newX - renderer->x(), yPos + newY - renderer->y());
3251 return closestRenderer->positionForCoordinates(newX - closestRenderer->x(), newY - closestRenderer->y());
H A DRenderBlock.cpp3395 int newY = 0; local
3399 newY = lowestFloatLogicalBottom(FloatingObject::FloatLeft);
3402 newY = lowestFloatLogicalBottom(FloatingObject::FloatRight);
3405 newY = lowestFloatLogicalBottom();
3409 if (height() < newY)
3410 setLogicalHeight(newY);
H A DRenderLayer.cpp2215 int newY = max(0, min(scrollYOffset(), scrollHeight() - box->clientHeight())); local
2216 if (newX != scrollXOffset() || newY != scrollYOffset()) {
2224 scrollToOffset(newX, newY);
/external/webkit/Source/WebCore/platform/mac/
H A DScrollAnimatorMac.mm574 float newY = max<float>(min<float>(position.y(), m_scrollableArea->contentsSize().height() - m_scrollableArea->visibleHeight()), 0);
576 return FloatPoint(newX, newY);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 368 milliseconds