/external/perfetto/ui/src/tracks/process_summary/ |
D | frontend.ts | 69 let lastX = startPx; 79 ctx.moveTo(lastX, lastY); 85 lastX = Math.floor(timeScale.timeToPx(startTime)); 87 ctx.lineTo(lastX, lastY); 89 ctx.lineTo(lastX, lastY); 91 ctx.lineTo(lastX, bottomY);
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | CachedPathIteratorFactory.java | 63 float lastX = 0; in CachedPathIteratorFactory() local 70 lastX, in CachedPathIteratorFactory() 76 lastX = mCoordinates[i][4], in CachedPathIteratorFactory() 82 lastX, in CachedPathIteratorFactory() 86 lastX = mCoordinates[i][2], in CachedPathIteratorFactory() 94 lastX, lastY, lastX = mCoordinates[0][0], lastY = mCoordinates[0][1]); in CachedPathIteratorFactory() 104 lastX = mCoordinates[i][0]; in CachedPathIteratorFactory() 109 (float) Point2D.distance(lastX, lastY, mCoordinates[i][0], mCoordinates[i][1]); in CachedPathIteratorFactory() 110 lastX = mCoordinates[i][0]; in CachedPathIteratorFactory() 237 int type, float[] coords, float lastX, float lastY, float t, float[] point) { in getPointAtLength() argument [all …]
|
/external/skqp/src/core/ |
D | SkBlitter.cpp | 184 int lastX = clip.fLeft; // init x to clip.fLeft in blitCoverageDeltas() local 196 SkASSERT(delta.fX >= lastX); // delta must be x sorted in blitCoverageDeltas() 197 if (delta.fX > lastX) { // we have proceeded to a new x (different from lastX) in blitCoverageDeltas() 200 alphas[lastX - clip.fLeft] = alpha; // set alpha at lastX in blitCoverageDeltas() 201 runs[lastX - clip.fLeft] = delta.fX - lastX; // set the run length in blitCoverageDeltas() 202 lastX = delta.fX; // now set lastX to current x in blitCoverageDeltas() 210 alphas[lastX - clip.fLeft] = alpha; in blitCoverageDeltas() 211 runs[lastX - clip.fLeft] = clip.fRight - lastX; in blitCoverageDeltas()
|
/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/tracking/ |
D | ObjectTracker.java | 328 float lastX = startX; in drawHistoryPoint() local 332 final float newX = lastX + delta.x; in drawHistoryPoint() 334 canvas.drawLine(lastX, lastY, newX, newY, p); in drawHistoryPoint() 335 lastX = newX; in drawHistoryPoint()
|
/external/icu/icu4c/source/samples/layout/ |
D | paragraph.cpp | 242 le_int32 lastX = line->getWidth(); in draw() local 244 x = (fWidth - lastX - MARGIN); in draw()
|
D | pflow.c | 334 le_int32 lastX = pl_getLineWidth(line); in pf_draw() local 336 x = (obj->fWidth - lastX - MARGIN); in pf_draw()
|
/external/skia/tools/viewer/ |
D | TouchGesture.h | 31 void updateZoom(float scale, float startX, float startY, float lastX, float lastY);
|
D | TouchGesture.cpp | 196 void TouchGesture::updateZoom(float scale, float startX, float startY, float lastX, float lastY) { in updateZoom() argument 199 fLocalM.postTranslate(lastX, lastY); in updateZoom()
|
/external/freetype/src/raster/ |
D | ftraster.c | 500 Long lastX, lastY; member 1449 if ( Line_Up( RAS_VARS ras.lastX, ras.lastY, in Line_To() 1455 if ( Line_Down( RAS_VARS ras.lastX, ras.lastY, in Line_To() 1464 ras.lastX = x; in Line_To() 1509 ras.arc[2].x = ras.lastX; in Conic_To() 1582 ras.lastX = x3; in Conic_To() 1638 ras.arc[3].x = ras.lastX; in Cubic_To() 1724 ras.lastX = x4; in Cubic_To() 1839 ras.lastX = v_start.x; in Decompose_Curve()
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/ |
D | ConsoleActivity.java | 116 private float lastX, lastY; field in ConsoleActivity 515 lastX = event.getX(); in onCreate() 518 final int deltaX = (int) (lastX - event.getX()); in onCreate() 534 && Math.abs(event.getX() - lastX) < MAX_CLICK_DISTANCE in onCreate()
|
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/ |
D | SubsamplingScaleImageView.java | 851 float lastX = vTranslate.x; in onTouchEventInternal() local 854 boolean atXEdge = lastX != vTranslate.x; in onTouchEventInternal()
|