Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
H A DSignalDrawable.java73 private final Path mCutoutPath = new Path(); field in SignalDrawable
199 mCutoutPath.reset(); in draw()
200 mCutoutPath.setFillType(FillType.WINDING); in draw()
214 canvas.drawPath(mCutoutPath, mTransparentPaint); in draw()
219 mCutoutPath.moveTo(width, height); in draw()
220 mCutoutPath.rLineTo(-cutX, 0); in draw()
221 mCutoutPath.rLineTo(0, -cutY); in draw()
222 mCutoutPath.rLineTo(cutX, 0); in draw()
223 mCutoutPath.rLineTo(0, cutY); in draw()
224 canvas.drawPath(mCutoutPath, mTransparentPaint); in draw()
[all …]
/aosp14/frameworks/base/core/java/android/view/
H A DDisplayCutout.java1415 private Path mCutoutPath; field in DisplayCutout.Builder
1433 if (mCutoutPath != null) { in build()
1439 DisplayCutout.sCachedCutoutPath = mCutoutPath; in build()
1516 mCutoutPath = cutoutPath; in setCutoutPath()