Home | History | Annotate | Download | only in deviceinfo

Lines Matching defs:lastX

95                     final float lastX = nextX - entryWidth;
96 if (lastX < left) {
101 canvas.drawRect(lastX, top, nextX, bottom, e.paint);
102 nextX = lastX;
108 float lastX = left;
119 final float nextX = lastX + entryWidth;
121 canvas.drawRect(lastX, top, right, bottom, e.paint);
125 canvas.drawRect(lastX, top, nextX, bottom, e.paint);
126 lastX = nextX;
130 canvas.drawRect(lastX, top, right, bottom, mEmptyPaint);