Home
last modified time | relevance | path

Searched refs:mSystemWindowPaint (Results 1 – 1 of 1) sorted by relevance

/cts/tests/tests/systemui/src/android/systemui/cts/
DWindowInsetsPresenterDrawable.java42 private final Paint mSystemWindowPaint; field in WindowInsetsPresenterDrawable
79 mSystemWindowPaint = new Paint(); in WindowInsetsPresenterDrawable()
80 mSystemWindowPaint.setStrokeWidth(2); in WindowInsetsPresenterDrawable()
81 mSystemWindowPaint.setStyle(Paint.Style.STROKE); in WindowInsetsPresenterDrawable()
82 mSystemWindowPaint.setColor(Color.YELLOW); in WindowInsetsPresenterDrawable()
83 mSystemWindowPaint.setPathEffect(new DashPathEffect(new float[]{0, GAP * 3, GAP}, 0)); in WindowInsetsPresenterDrawable()
142 drawInset(canvas, mWindowInsets.getSystemWindowInsets(), mSystemWindowPaint); in draw()