Home
last modified time | relevance | path

Searched refs:lastY (Results 1 – 15 of 15) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DCachedPathIteratorFactory.java64 float lastY = 0; in CachedPathIteratorFactory() local
71 lastY, in CachedPathIteratorFactory()
77 lastY = mCoordinates[i][5]); in CachedPathIteratorFactory()
83 lastY, in CachedPathIteratorFactory()
87 lastY = mCoordinates[i][3]); in CachedPathIteratorFactory()
94 lastX, lastY, lastX = mCoordinates[0][0], lastY = mCoordinates[0][1]); in CachedPathIteratorFactory()
105 lastY = mCoordinates[i][1]; in CachedPathIteratorFactory()
109 (float) Point2D.distance(lastX, lastY, mCoordinates[i][0], mCoordinates[i][1]); in CachedPathIteratorFactory()
111 lastY = mCoordinates[i][1]; in CachedPathIteratorFactory()
237 int type, float[] coords, float lastX, float lastY, float t, float[] point) { in getPointAtLength() argument
[all …]
/external/perfetto/ui/src/tracks/cpu_freq/
Dfrontend.ts74 let lastY = zeroY;
96 ctx.moveTo(lastX, lastY);
102 if (nextY === lastY) continue;
105 ctx.lineTo(lastX, lastY);
107 lastY = nextY;
113 ctx.lineTo(finalX, lastY);
129 const lastY = zeroY - Math.round((value / yMax) * RECT_HEIGHT); constant
130 ctx.fillRect(firstX, bottomY, secondX - firstX, lastY - bottomY);
/external/perfetto/ui/src/tracks/process_summary/
Dfrontend.ts73 let lastY = bottomY;
82 ctx.moveTo(lastX, lastY);
90 ctx.lineTo(lastX, lastY);
91 lastY = MARGIN_TOP + Math.round(RECT_HEIGHT * (1 - utilization));
92 ctx.lineTo(lastX, lastY);
/external/perfetto/ui/src/tracks/counter/
Dfrontend.ts71 let lastY = zeroY;
98 ctx.moveTo(lastX, lastY);
103 if (nextY === lastY) continue;
106 ctx.lineTo(lastX, lastY);
108 lastY = nextY;
110 ctx.lineTo(endPx, lastY);
/external/perfetto/ui/src/tracks/process_scheduling/
Dfrontend.ts86 let lastY = bottomY; variable
91 ctx.moveTo(lastX, lastY);
98 ctx.lineTo(lastX, lastY);
99 lastY = MARGIN_TOP + Math.round(RECT_HEIGHT * (1 - utilization));
100 ctx.lineTo(lastX, lastY);
/external/freetype/src/raster/
Dftraster.c496 Long lastX, lastY; member
1397 if ( y > ras.lastY ) in Line_To()
1400 IS_BOTTOM_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1405 if ( y < ras.lastY ) in Line_To()
1407 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1413 if ( y < ras.lastY ) in Line_To()
1415 if ( End_Profile( RAS_VARS IS_TOP_OVERSHOOT( ras.lastY ) ) || in Line_To()
1417 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To()
1423 if ( y > ras.lastY ) in Line_To()
1425 if ( End_Profile( RAS_VARS IS_BOTTOM_OVERSHOOT( ras.lastY ) ) || in Line_To()
[all …]
/external/perfetto/ui/src/tracks/cpu_slices/
Dfrontend.ts92 let lastY = bottomY; variable
96 ctx.moveTo(lastX, lastY);
103 ctx.lineTo(lastX, lastY);
104 lastY = MARGIN_TOP + Math.round(RECT_HEIGHT * (1 - utilization));
105 ctx.lineTo(lastX, lastY);
/external/skia/src/core/
DSkAAClip.cpp207 const int lastY = fBounds.height() - 1; in validate() local
214 SkASSERT(yoff->fY <= lastY); in validate()
225 SkASSERT(yoff->fY == lastY); in validate()
524 const YOffset& lastY = yoff[head->fRowCount - 1]; in trimBounds() local
525 SkASSERT(lastY.fY + 1 <= fBounds.height()); in trimBounds()
526 fBounds.fBottom = fBounds.fTop + lastY.fY + 1; in trimBounds()
527 SkASSERT(lastY.fY + 1 == fBounds.height()); in trimBounds()
839 int lastY SK_INIT_TO_AVOID_WARNING; in quickContains()
840 const uint8_t* row = this->findRow(top, &lastY); in quickContains()
841 if (lastY < bottom) { in quickContains()
[all …]
/external/skqp/src/core/
DSkAAClip.cpp207 const int lastY = fBounds.height() - 1; in validate() local
214 SkASSERT(yoff->fY <= lastY); in validate()
225 SkASSERT(yoff->fY == lastY); in validate()
524 const YOffset& lastY = yoff[head->fRowCount - 1]; in trimBounds() local
525 SkASSERT(lastY.fY + 1 <= fBounds.height()); in trimBounds()
526 fBounds.fBottom = fBounds.fTop + lastY.fY + 1; in trimBounds()
527 SkASSERT(lastY.fY + 1 == fBounds.height()); in trimBounds()
839 int lastY SK_INIT_TO_AVOID_WARNING; in quickContains()
840 const uint8_t* row = this->findRow(top, &lastY); in quickContains()
841 if (lastY < bottom) { in quickContains()
[all …]
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
DObjectTracker.java329 float lastY = startY; in drawHistoryPoint() local
333 final float newY = lastY + delta.y; in drawHistoryPoint()
334 canvas.drawLine(lastX, lastY, newX, newY, p); in drawHistoryPoint()
336 lastY = newY; in drawHistoryPoint()
/external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/tracking/
DObjectTracker.java329 float lastY = startY; in drawHistoryPoint() local
333 final float newY = lastY + delta.y; in drawHistoryPoint()
334 canvas.drawLine(lastX, lastY, newX, newY, p); in drawHistoryPoint()
336 lastY = newY; in drawHistoryPoint()
/external/v8/benchmarks/
Dnavier-stokes.js185 var lastY = y[currentRow];
189lastY = y[currentRow] = (y0[currentRow] + a * (lastY + y[++currentRow] + y[++lastRow] + y[++nextRo…
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DConsoleActivity.java116 private float lastX, lastY; field in ConsoleActivity
516 lastY = event.getY(); in onCreate()
519 final int deltaY = (int) (lastY - event.getY()); in onCreate()
535 && Math.abs(event.getY() - lastY) < MAX_CLICK_DISTANCE) { in onCreate()
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
DSubsamplingScaleImageView.java852 float lastY = vTranslate.y; in onTouchEventInternal() local
855 boolean atYEdge = lastY != vTranslate.y; in onTouchEventInternal()
858 boolean yPan = lastY == vTranslate.y && dy > offset * 3; in onTouchEventInternal()
/external/zxing/core/
Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...