Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/scrim/
DScrimDrawable.java48 private final RectF mBoundsRectF = new RectF(); field in ScrimDrawable
222 mBoundsRectF.set(getBounds()); in draw()
228 mBoundsRectF.bottom -= bottomEdgeRadius; in draw()
238 if (mBoundsRectF.bottom - mBoundsRectF.top > bottomEdgeRadius) { in draw()
240 mPath.moveTo(mBoundsRectF.right, mBoundsRectF.top + topEdgeRadius); in draw()
241 mPath.cubicTo(mBoundsRectF.right, mBoundsRectF.top + topEdgeRadius, in draw()
242 mBoundsRectF.right, mBoundsRectF.top, in draw()
243 mBoundsRectF.right - topEdgeRadius, mBoundsRectF.top); in draw()
244 mPath.lineTo(mBoundsRectF.left + topEdgeRadius, mBoundsRectF.top); in draw()
245 mPath.cubicTo(mBoundsRectF.left + topEdgeRadius, mBoundsRectF.top, in draw()
[all …]