Searched refs:newX (Results 1 - 25 of 25) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DXYPlotZoomPan.java265 PointF newX = new PointF();
267 calculatePan(oldFirstFinger, newX, true);
269 super.setDomainBoundaries(newX.x, newX.y, BoundaryMode.FIXED);
270 lastMinX = newX.x;
271 lastMaxX = newX.y;
274 calculatePan(oldFirstFinger, newX, false);
276 super.setRangeBoundaries(newX.x, newX.y, BoundaryMode.FIXED);
277 lastMinY = newX
283 calculatePan(final PointF oldFirstFinger, PointF newX, final boolean horizontal) argument
354 calculateZoom(float scale, PointF newX, final boolean horizontal) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DMovementComponent.java45 float newX = object.getPosition().x + offsetX;
55 object.getPosition().set(newX, newY);
H A DInputGameInterface.java132 float newX;
136 newX = mDirectionalPad.getX() + (trackball.getX() * ROLL_FILTER * mMovementSensitivity);
141 newX = oldX + (trackball.getX() * ROLL_FILTER * mMovementSensitivity);
145 mDirectionalPad.press(gameTime, newX, newY);
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/viewpager/
H A DVerticalViewPager.java50 float newX = (ev.getY() / height) * width;
52 ev.setLocation(newX, newY);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
H A DTilingFunctions.h422 uint32_t newX, newY, newSampleX, newSampleY; local
426 newX = x;
435 newX = pdep_u32(x, xMask);
447 newX = pdep_u32(x, mask);
460 newX = pdep_u32(x, xMask);
472 newX = pdep_u32(x, mask);
480 newX = newY = 0;
484 x = newX | (newSampleX << 1);
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DWavePlotView.java317 float newX = (float) (w * currentGridMs / windowMs);
318 canvas.drawLine(newX, 0, newX, h, mPaintGrid);
325 myPath.moveTo(newX, h);
326 myPath.lineTo(newX, h / 2);
/external/skia/src/core/
H A DSkScan_Path.cpp137 SkFixed newX; local
144 newX = currE->fX;
149 newX = currE->fX;
156 newX = currE->fX + currE->fDX;
157 currE->fX = newX;
159 if (newX < prevX) { // ripple currE backwards until it is x-sorted
162 prevX = newX;
H A DSkScan_AAAPath.cpp1514 SkFixed newX;
1539 newX = currE->fX;
1541 if (newX < prevX) { // ripple currE backwards until it is x-sorted
1550 prevX = newX;
/external/skqp/src/core/
H A DSkScan_Path.cpp136 SkFixed newX; local
143 newX = currE->fX;
148 newX = currE->fX;
155 newX = currE->fX + currE->fDX;
156 currE->fX = newX;
158 if (newX < prevX) { // ripple currE backwards until it is x-sorted
161 prevX = newX;
H A DSkScan_AAAPath.cpp1513 SkFixed newX;
1538 newX = currE->fX;
1540 if (newX < prevX) { // ripple currE backwards until it is x-sorted
1549 prevX = newX;
/external/skia/src/gpu/text/
H A DGrAtlasTextBlob.cpp285 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
290 newViewMatrix.getScaleX() * (newX - currentX) +
295 newViewMatrix.getSkewY() * (newX - currentX) +
299 *transX = newX - currentX;
284 calculate_translation(bool applyVM, const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY, const SkMatrix& currentViewMatrix, SkScalar currentX, SkScalar currentY, SkScalar* transX, SkScalar* transY) argument
/external/skia/include/core/
H A DSkRect.h403 /** Offsets SkIRect so that fLeft equals newX, and fTop equals newY. width and height
406 @param newX stored in fLeft, preserving width()
409 void offsetTo(int32_t newX, int32_t newY) { argument
410 fRight = Sk64_pin_to_s32((int64_t)fRight + newX - fLeft);
412 fLeft = newX;
1242 /** Offsets SkRect so that fLeft equals newX, and fTop equals newY. width and height
1245 @param newX stored in fLeft, preserving width()
1248 void offsetTo(SkScalar newX, SkScalar newY) { argument
1249 fRight += newX - fLeft;
1251 fLeft = newX;
[all...]
/external/skqp/include/core/
H A DSkRect.h390 /** Offsets SkIRect so that fLeft equals newX, and fTop equals newY. width and height
393 @param newX stored in fLeft, preserving width()
396 void offsetTo(int32_t newX, int32_t newY) { argument
397 fRight = Sk64_pin_to_s32((int64_t)fRight + newX - fLeft);
399 fLeft = newX;
1232 /** Offsets SkRect so that fLeft equals newX, and fTop equals newY. width and height
1235 @param newX stored in fLeft, preserving width()
1238 void offsetTo(SkScalar newX, SkScalar newY) { argument
1239 fRight += newX - fLeft;
1241 fLeft = newX;
[all...]
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
H A DObjectTracker.java332 final float newX = lastX + delta.x;
334 canvas.drawLine(lastX, lastY, newX, newY, p);
335 lastX = newX;
/external/skqp/src/gpu/text/
H A DGrAtlasTextBlob.cpp333 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
338 newViewMatrix.getScaleX() * (newX - currentX) +
343 newViewMatrix.getSkewY() * (newX - currentX) +
347 *transX = newX - currentX;
332 calculate_translation(bool applyVM, const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY, const SkMatrix& currentViewMatrix, SkScalar currentX, SkScalar currentY, SkScalar* transX, SkScalar* transY) argument
/external/deqp/modules/egl/
H A DteglResizeTests.cpp285 const int newX = xCorner == 0 ? 0 : newWidth - minWidth; local
294 getSubregion(newSurface.getAccess(), newX, newY, minWidth, minHeight);
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemShaderImageAccessTests.cpp1390 const deInt32 newX = computeBinaryAtomicOperationResult(m_params.atomicOperation, oldX, atomicArg); local
1392 reference.setPixel(tcu::IVec4(newX, 0, 0, 0), x, y);
/external/valgrind/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c2236 Bool newR, newW, newX, needDiscard; local
2246 newX = toBool(prot & VKI_PROT_EXEC);
2249 needDiscard = any_Ts_in_range( start, len ) && !newX;
2262 nsegments[i].hasX = newX;
/external/robolectric/v3/runtime/
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 4825 milliseconds