HomeSort by relevance Sort by last modified time
    Searched refs:nextX (Results 1 - 6 of 6) sorted by null

  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 84 float nextX = right;
95 final float lastX = nextX - entryWidth;
97 canvas.drawRect(left, top, nextX, bottom, e.paint);
101 canvas.drawRect(lastX, top, nextX, bottom, e.paint);
102 nextX = lastX;
106 canvas.drawRect(left, top, nextX, bottom, mEmptyPaint);
119 final float nextX = lastX + entryWidth;
120 if (nextX > right) {
125 canvas.drawRect(lastX, top, nextX, bottom, e.paint);
126 lastX = nextX;
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
PercentageBarChart.java 126 final float nextX = lastX + ((lastX < end) ? entryWidth : -entryWidth);
129 if (drawEntry(canvas, lastX, nextX, e.paint)) {
132 lastX = nextX;
  /frameworks/rs/driver/runtime/
rs_sample.c 189 int locX, int locY, int nextX, int nextY,
192 float p1 = getElementAt1(p, stride, nextX, locY);
194 float p3 = getElementAt1(p, stride, nextX, nextY);
202 int locX, int locY, int nextX, int nextY,
205 float p1 = getElementAt1(p, stride, nextX, locY);
207 float p3 = getElementAt1(p, stride, nextX, nextY);
215 int locX, int locY, int nextX, int nextY,
218 float2 p1 = getElementAt2(p, stride, nextX, locY);
220 float2 p3 = getElementAt2(p, stride, nextX, nextY);
228 int locX, int locY, int nextX, int nextY
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkTextureCompressor_Blitter.h 67 // debugging to make sure that we're properly setting the nextX distance
500 // nextX -- for each run, the next point at which we need to update curAlphaColumn
502 // finalX -- the minimum of all the nextX values.
518 int nextX[BlockDim];
520 nextX[i] = 0x7FFFFF;
530 nextX[i] = *(fBufferedRuns[i].fRuns);
533 finalX = SkMin32(nextX[i], finalX);
596 if (nextX[i] == finalX) {
601 nextX[i] += *(fBufferedRuns[i].fRuns);
607 finalX = SkMin32(nextX[i], finalX)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp 307 float nextX = currentX + prevAdvance + currentAdvance;
308 if (currentX <= targetX && targetX <= nextX)
310 currentX = nextX;
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 734 milliseconds