Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DWindowInsets.java79 public WindowInsets(Rect systemWindowInsets, Rect windowDecorInsets, Rect stableInsets, in WindowInsets() argument
81 mSystemWindowInsetsConsumed = systemWindowInsets == null; in WindowInsets()
83 ? EMPTY_RECT : new Rect(systemWindowInsets); in WindowInsets()
118 public WindowInsets(Rect systemWindowInsets) { in WindowInsets() argument
119 this(systemWindowInsets, null, null, false, false, null); in WindowInsets()
404 public WindowInsets replaceSystemWindowInsets(Rect systemWindowInsets) { in replaceSystemWindowInsets() argument
406 result.mSystemWindowInsets = new Rect(systemWindowInsets); in replaceSystemWindowInsets()
/frameworks/support/compat/src/main/java/androidx/core/view/
DWindowInsetsCompat.java229 public WindowInsetsCompat replaceSystemWindowInsets(Rect systemWindowInsets) { in replaceSystemWindowInsets() argument
232 ((WindowInsets) mInsets).replaceSystemWindowInsets(systemWindowInsets)); in replaceSystemWindowInsets()