HomeSort by relevance Sort by last modified time
    Searched defs:lastX (Results 1 - 13 of 13) sorted by null

  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 242 le_int32 lastX = line->getWidth();
244 x = (fWidth - lastX - MARGIN);
pflow.c 334 le_int32 lastX = pl_getLineWidth(line);
336 x = (obj->fWidth - lastX - MARGIN);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardDrag.java 51 float lastX;
59 lastX = x;
70 float newMomentumX = (x - lastX) / (mDensity * deltaT);
94 lastX = x;
  /device/generic/goldfish/camera/fake-pipeline2/
Sensor.cpp 438 unsigned int lastX = 0;
443 if (x - lastX > 0) {
444 for (unsigned int k = 0; k < (x-lastX); k++) {
448 lastX = x;
476 unsigned int lastX = 0;
481 if (x - lastX > 0) {
482 for (unsigned int k = 0; k < (x-lastX); k++) {
486 lastX = x;
524 unsigned int lastX = 0;
529 if (x - lastX > 0)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
CachedPathIteratorFactory.java 63 float lastX = 0;
70 lastX,
76 lastX = mCoordinates[i][4],
82 lastX,
86 lastX = mCoordinates[i][2],
94 lastX, lastY, lastX = mCoordinates[0][0], lastY = mCoordinates[0][1]);
104 lastX = mCoordinates[i][0];
109 (float) Point2D.distance(lastX, lastY, mCoordinates[i][0], mCoordinates[i][1]);
110 lastX = mCoordinates[i][0]
    [all...]
  /external/skia/src/core/
SkBlitter.cpp 185 int lastX = clip.fLeft; // init x to clip.fLeft
197 SkASSERT(delta.fX >= lastX); // delta must be x sorted
198 if (delta.fX > lastX) { // we have proceeded to a new x (different from lastX)
201 alphas[lastX - clip.fLeft] = alpha; // set alpha at lastX
202 runs[lastX - clip.fLeft] = delta.fX - lastX; // set the run length
203 lastX = delta.fX; // now set lastX to current
    [all...]
  /external/skqp/src/core/
SkBlitter.cpp 184 int lastX = clip.fLeft; // init x to clip.fLeft
196 SkASSERT(delta.fX >= lastX); // delta must be x sorted
197 if (delta.fX > lastX) { // we have proceeded to a new x (different from lastX)
200 alphas[lastX - clip.fLeft] = alpha; // set alpha at lastX
201 runs[lastX - clip.fLeft] = delta.fX - lastX; // set the run length
202 lastX = delta.fX; // now set lastX to current
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
ConsoleActivity.java 116 private float lastX, lastY;
515 lastX = event.getX();
518 final int deltaX = (int) (lastX - event.getX());
534 && Math.abs(event.getX() - lastX) < MAX_CLICK_DISTANCE
    [all...]
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
ObjectTracker.java 328 float lastX = startX;
332 final float newX = lastX + delta.x;
334 canvas.drawLine(lastX, lastY, newX, newY, p);
335 lastX = newX;
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/tracking/
ObjectTracker.java 328 float lastX = startX;
332 final float newX = lastX + delta.x;
334 canvas.drawLine(lastX, lastY, newX, newY, p);
335 lastX = newX;
  /external/freetype/src/raster/
ftraster.c 496 Long lastX, lastY;
    [all...]
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
SubsamplingScaleImageView.java     [all...]
  /external/zxing/core/
core.jar 

Completed in 1457 milliseconds