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.java62 private Paint mPathPaint = new Paint(); field in class:LockPatternView
261 mPathPaint.setAntiAlias(true);
262 mPathPaint.setDither(true);
263 mPathPaint.setColor(Color.WHITE); // TODO this should be from the style
264 mPathPaint.setAlpha(mStrokeAlpha);
265 mPathPaint.setStyle(Paint.Style.STROKE);
266 mPathPaint.setStrokeJoin(Paint.Join.ROUND);
267 mPathPaint.setStrokeCap(Paint.Cap.ROUND);
851 mPathPaint.setStrokeWidth(radius);
925 canvas.drawPath(currentPath, mPathPaint);
[all...]
H A DPointerLocationView.java117 private final Paint mPathPaint; field in class:PointerLocationView
165 mPathPaint = new Paint();
166 mPathPaint.setAntiAlias(false);
167 mPathPaint.setARGB(255, 0, 96, 255);
308 canvas.drawLine(lastX, lastY, x, y, mPathPaint);

Completed in 106 milliseconds