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

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPoint.cpp95 double newX, newY; local
96 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); local
97 return narrowPrecision(newX, newY);
102 double newX, newY; local
103 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); local
104 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/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DTrackingInputHandler.java113 private void moveCursor(float newX, float newY) { argument
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/
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/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/chromium_org/third_party/skia/include/core/
H A DSkRect.h175 * Offset this rect such its new x() and y() will equal newX and newY.
177 void offsetTo(int32_t newX, int32_t newY) { argument
179 fBottom += newY - fTop;
181 fTop = newY;
603 * Offset this rect such its new x() and y() will equal newX and newY.
605 void offsetTo(SkScalar newX, SkScalar newY) {
607 fBottom += newY - fTop;
609 fTop = newY;
/external/skia/include/core/
H A DSkRect.h175 * Offset this rect such its new x() and y() will equal newX and newY.
177 void offsetTo(int32_t newX, int32_t newY) { argument
179 fBottom += newY - fTop;
181 fTop = newY;
603 * Offset this rect such its new x() and y() will equal newX and newY.
605 void offsetTo(SkScalar newX, SkScalar newY) {
607 fBottom += newY - fTop;
609 fTop = newY;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlockFlow.cpp1920 LayoutUnit newY = 0; local
1923 newY = lowestFloatLogicalBottom(FloatingObject::FloatLeft);
1926 newY = lowestFloatLogicalBottom(FloatingObject::FloatRight);
1929 newY = lowestFloatLogicalBottom();
1933 if (height() < newY)
1934 setLogicalHeight(newY);
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DScrollAnimatorMac.mm691 float newY = max<float>(min<float>(position.y(), maxPos.y()), minPos.y());
693 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 2030 milliseconds