Home
last modified time | relevance | path

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

/cts/tests/tests/systemui/src/android/systemui/cts/
DWindowInsetsPresenterDrawable.java50 private WindowInsets mWindowInsets; field in WindowInsetsPresenterDrawable
106 mWindowInsets = windowInsets; in WindowInsetsPresenterDrawable()
137 if (mWindowInsets != null) { in draw()
138 drawInset(canvas, mWindowInsets.getSystemGestureInsets(), mSystemGesturePaint); in draw()
139 drawInset(canvas, mWindowInsets.getMandatorySystemGestureInsets(), in draw()
141 drawInset(canvas, mWindowInsets.getTappableElementInsets(), mTappableElementPaint); in draw()
142 drawInset(canvas, mWindowInsets.getSystemWindowInsets(), mSystemWindowPaint); in draw()
177 mWindowInsets = new WindowInsets.Builder(windowInsets).build(); in setWindowInsets()