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

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TextAlign.java 38 private Paint mPathPaint;
81 mPathPaint = new Paint();
82 mPathPaint.setAntiAlias(true);
83 mPathPaint.setColor(0x800000FF);
84 mPathPaint.setStyle(Paint.Style.STROKE);
139 canvas.drawPath(mPath, mPathPaint);
144 canvas.drawPath(mPath, mPathPaint);
149 canvas.drawPath(mPath, mPathPaint);
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 66 private Paint mPathPaint = new Paint();
262 mPathPaint.setAntiAlias(true);
263 mPathPaint.setDither(true);
264 mPathPaint.setColor(Color.WHITE); // TODO this should be from the style
265 mPathPaint.setAlpha(mStrokeAlpha);
266 mPathPaint.setStyle(Paint.Style.STROKE);
267 mPathPaint.setStrokeJoin(Paint.Join.ROUND);
268 mPathPaint.setStrokeCap(Paint.Cap.ROUND);
915 mPathPaint.setStrokeWidth(radius);
    [all...]
PointerLocationView.java 91 private final Paint mPathPaint;
131 mPathPaint = new Paint();
132 mPathPaint.setAntiAlias(false);
133 mPathPaint.setARGB(255, 0, 96, 255);
279 canvas.drawLine(lastX, lastY, x, y, mPathPaint);

Completed in 236 milliseconds