Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
DSignalDrawable.java79 private final Path mCutoutPath = new Path(); field in SignalDrawable
213 mCutoutPath.reset(); in draw()
214 mCutoutPath.setFillType(FillType.WINDING); in draw()
228 canvas.drawPath(mCutoutPath, mTransparentPaint); in draw()
233 mCutoutPath.moveTo(width, height); in draw()
234 mCutoutPath.rLineTo(-cutX, 0); in draw()
235 mCutoutPath.rLineTo(0, -cutY); in draw()
236 mCutoutPath.rLineTo(cutX, 0); in draw()
237 mCutoutPath.rLineTo(0, cutY); in draw()
238 canvas.drawPath(mCutoutPath, mTransparentPaint); in draw()
[all …]
/frameworks/base/core/java/android/view/
DDisplayCutout.java1600 private Path mCutoutPath; field in Builder
1618 if (mCutoutPath != null) { in build()
1624 DisplayCutout.sCachedCutoutPath = mCutoutPath; in build()
1701 mCutoutPath = cutoutPath; in setCutoutPath()