Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:nextX

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;