/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | XYPlotZoomPan.java | 265 PointF newX = new PointF(); in pan() local 267 calculatePan(oldFirstFinger, newX, true); in pan() 269 super.setDomainBoundaries(newX.x, newX.y, BoundaryMode.FIXED); in pan() 270 lastMinX = newX.x; in pan() 271 lastMaxX = newX.y; in pan() 274 calculatePan(oldFirstFinger, newX, false); in pan() 276 super.setRangeBoundaries(newX.x, newX.y, BoundaryMode.FIXED); in pan() 277 lastMinY = newX.x; in pan() 278 lastMaxY = newX.y; in pan() 283 private void calculatePan(final PointF oldFirstFinger, PointF newX, final boolean horizontal) { in calculatePan() argument [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | MovementComponent.java | 45 float newX = object.getPosition().x + offsetX; in update() local 55 object.getPosition().set(newX, newY); in update()
|
D | InputGameInterface.java | 132 float newX; in update() local 136 newX = mDirectionalPad.getX() + (trackball.getX() * ROLL_FILTER * mMovementSensitivity); in update() 141 newX = oldX + (trackball.getX() * ROLL_FILTER * mMovementSensitivity); in update() 145 mDirectionalPad.press(gameTime, newX, newY); in update()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
D | ButtonPropertyEditorPresentationImpl.java | 167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) { in setBounds() argument 196 control.setLocation(newX, newY); in setBounds() 201 control.setBounds(newX, newY, newWidth, newHeight); in setBounds()
|
/external/skia/src/core/ |
D | SkScan_Path.cpp | 171 SkFixed newX; in walk_edges() local 178 newX = currE->fX; in walk_edges() 183 newX = currE->fX; in walk_edges() 190 newX = currE->fX + currE->fDX; in walk_edges() 191 currE->fX = newX; in walk_edges() 193 if (newX < prevX) { // ripple currE backwards until it is x-sorted in walk_edges() 196 prevX = newX; in walk_edges()
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
D | Quaternion.java | 251 final float newX = this.w * other.x + this.x * other.w + this.y * other.z - this.z * other.y; in mul() local 255 this.x = newX; in mul() 270 final float newX = this.w * x + this.x * w + this.y * z - this.z * y; in mul() local 274 this.x = newX; in mul() 286 final float newX = other.w * this.x + other.x * this.w + other.y * this.z - other.z * y; in mulLeft() local 290 this.x = newX; in mulLeft() 305 final float newX = w * this.x + x * this.w + y * this.z - z * this.y; in mulLeft() local 309 this.x = newX; in mulLeft()
|
D | Vector2.java | 372 float newX = this.x * cos - this.y * sin; in rotateRad() local 375 this.x = newX; in rotateRad()
|
/external/skia/include/core/ |
D | SkRect.h | 200 void offsetTo(int32_t newX, int32_t newY) { in offsetTo() 201 fRight += newX - fLeft; in offsetTo() 203 fLeft = newX; in offsetTo() 648 void offsetTo(SkScalar newX, SkScalar newY) { in offsetTo() 649 fRight += newX - fLeft; in offsetTo() 651 fLeft = newX; in offsetTo()
|
/external/skia/src/gpu/text/ |
D | GrAtlasTextBlob.cpp | 322 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY, in calculate_translation() argument 327 newViewMatrix.getScaleX() * (newX - currentX) + in calculate_translation() 332 newViewMatrix.getSkewY() * (newX - currentX) + in calculate_translation() 336 *transX = newX - currentX; in calculate_translation()
|
/external/clang/test/SemaObjC/ |
D | unused-backing-ivar-warning.m | 18 - (void) setX:(id)newX { // expected-warning {{ivar '_x' which backs the property is not reference… 19 _y = newX;
|
/external/deqp/modules/egl/ |
D | teglResizeTests.cpp | 285 const int newX = xCorner == 0 ? 0 : newWidth - minWidth; in compareCorners() local 294 getSubregion(newSurface.getAccess(), newX, newY, minWidth, minHeight); in compareCorners()
|
/external/valgrind/coregrind/m_aspacemgr/ |
D | aspacemgr-linux.c | 2220 Bool newR, newW, newX, needDiscard; in VG_() local 2230 newX = toBool(prot & VKI_PROT_EXEC); in VG_() 2233 needDiscard = any_Ts_in_range( start, len ) && !newX; in VG_() 2246 nsegments[i].hasX = newX; in VG_()
|
/external/webrtc/webrtc/modules/video_render/mac/ |
D | video_render_nsopengl.mm | 285 // float newX = mainDisplayRect.size.width/_width;
|