Searched refs:mPathPaint (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DScaledPathsActivity.java38 private final Paint mPathPaint; field in class:ScaledPathsActivity.PathsView
45 mPathPaint = new Paint();
46 mPathPaint.setAntiAlias(true);
47 mPathPaint.setColor(0xff0000ff);
48 mPathPaint.setStrokeWidth(5.0f);
49 mPathPaint.setStyle(Paint.Style.FILL);
65 mPathPaint.setColor(0xff0000ff);
66 mPathPaint.setStyle(Paint.Style.FILL);
74 mPathPaint.setColor(0xffff0000);
75 mPathPaint
[all...]
H A DTextOnPathActivity.java72 private final Paint mPathPaint; field in class:TextOnPathActivity.TextOnPathView
87 mPathPaint = new Paint();
88 mPathPaint.setAntiAlias(true);
89 mPathPaint.setStyle(Paint.Style.STROKE);
90 mPathPaint.setColor(0xff000099);
116 canvas.drawPath(mPath, mPathPaint);
125 canvas.drawLines(mLines, mPathPaint);
129 canvas.drawPath(mStraightPath, mPathPaint);
138 mPathPaint);
139 canvas.drawPath(mPath, mPathPaint);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java82 private final Paint mPathPaint = new Paint(); field in class:LockPatternView
293 mPathPaint.setAntiAlias(true);
294 mPathPaint.setDither(true);
304 mPathPaint.setColor(pathColor);
306 mPathPaint.setStyle(Paint.Style.STROKE);
307 mPathPaint.setStrokeJoin(Paint.Join.ROUND);
308 mPathPaint.setStrokeCap(Paint.Cap.ROUND);
311 mPathPaint.setStrokeWidth(mPathWidth);
1115 mPathPaint.setColor(getCurrentColor(true /* partOfPattern */));
1142 canvas.drawPath(currentPath, mPathPaint);
[all...]
H A DPointerLocationView.java119 private final Paint mPathPaint; field in class:PointerLocationView
167 mPathPaint = new Paint();
168 mPathPaint.setAntiAlias(false);
169 mPathPaint.setARGB(255, 0, 96, 255);
310 canvas.drawLine(lastX, lastY, x, y, mPathPaint);

Completed in 109 milliseconds