Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DWindowInsets.java213 public WindowInsets(Rect systemWindowInsets) { in WindowInsets() argument
214 this(createCompatTypeMap(systemWindowInsets), null, new boolean[SIZE], false, false, null); in WindowInsets()
541 public WindowInsets replaceSystemWindowInsets(Rect systemWindowInsets) { in replaceSystemWindowInsets() argument
542 return replaceSystemWindowInsets(systemWindowInsets.left, systemWindowInsets.top, in replaceSystemWindowInsets()
543 systemWindowInsets.right, systemWindowInsets.bottom); in replaceSystemWindowInsets()
946 public Builder setSystemWindowInsets(@NonNull Insets systemWindowInsets) { in setSystemWindowInsets() argument
947 Preconditions.checkNotNull(systemWindowInsets); in setSystemWindowInsets()
948 assignCompatInsets(mTypeInsetsMap, systemWindowInsets.toRect()); in setSystemWindowInsets()