/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | CachedPathIteratorFactory.java | 64 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/process_summary/ |
D | frontend.ts | 70 let lastY = bottomY; 79 ctx.moveTo(lastX, lastY); 87 ctx.lineTo(lastX, lastY); 88 lastY = MARGIN_TOP + Math.round(SUMMARY_HEIGHT * (1 - utilization)); 89 ctx.lineTo(lastX, lastY);
|
/external/perfetto/ui/src/tracks/cpu_freq/ |
D | frontend.ts | 115 const lastY = calculateY(data.lastFreqKHz[i]); constant 119 assertTrue(lastY === minY); 120 ctx.lineTo(x, lastY); 124 ctx.lineTo(x, lastY); 126 lastDrawnY = lastY;
|
/external/freetype/src/raster/ |
D | ftraster.c | 500 Long lastX, lastY; member 1405 if ( y > ras.lastY ) in Line_To() 1408 IS_BOTTOM_OVERSHOOT( ras.lastY ) ) ) in Line_To() 1413 if ( y < ras.lastY ) in Line_To() 1415 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To() 1421 if ( y < ras.lastY ) in Line_To() 1423 if ( End_Profile( RAS_VARS IS_TOP_OVERSHOOT( ras.lastY ) ) || in Line_To() 1425 IS_TOP_OVERSHOOT( ras.lastY ) ) ) in Line_To() 1431 if ( y > ras.lastY ) in Line_To() 1433 if ( End_Profile( RAS_VARS IS_BOTTOM_OVERSHOOT( ras.lastY ) ) || in Line_To() [all …]
|
/external/perfetto/ui/src/tracks/counter/ |
D | frontend.ts | 204 const lastY = calculateY(lastValues[i]); constant 208 assertTrue(lastY === minY); 209 ctx.lineTo(x, lastY); 213 ctx.lineTo(x, lastY); 215 lastDrawnY = lastY;
|
/external/skia/src/core/ |
D | SkAAClip.cpp | 206 const int lastY = fBounds.height() - 1; in validate() local 213 SkASSERT(yoff->fY <= lastY); in validate() 224 SkASSERT(yoff->fY == lastY); in validate() 523 const YOffset& lastY = yoff[head->fRowCount - 1]; in trimBounds() local 524 SkASSERT(lastY.fY + 1 <= fBounds.height()); in trimBounds() 525 fBounds.fBottom = fBounds.fTop + lastY.fY + 1; in trimBounds() 526 SkASSERT(lastY.fY + 1 == fBounds.height()); in trimBounds() 836 int lastY SK_INIT_TO_AVOID_WARNING; in quickContains() 837 const uint8_t* row = this->findRow(top, &lastY); in quickContains() 838 if (lastY < bottom) { in quickContains() [all …]
|
/external/skqp/src/core/ |
D | SkAAClip.cpp | 207 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/tools/android/test/src/org/tensorflow/demo/tracking/ |
D | ObjectTracker.java | 329 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/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/sl4a/ScriptingLayerForAndroid/src/org/connectbot/ |
D | ConsoleActivity.java | 116 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/ |
D | SubsamplingScaleImageView.java | 852 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()
|