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

/frameworks/base/core/java/android/view/
H A DWindowInsets.java66 public WindowInsets(Rect systemWindowInsets, Rect windowDecorInsets, Rect stableInsets, argument
68 mSystemWindowInsetsConsumed = systemWindowInsets == null;
69 mSystemWindowInsets = mSystemWindowInsetsConsumed ? EMPTY_RECT : systemWindowInsets;
98 public WindowInsets(Rect systemWindowInsets) { argument
99 this(systemWindowInsets, null, null, false, false);
354 * @param systemWindowInsets New system window insets. Each field is the inset in pixels
358 public WindowInsets replaceSystemWindowInsets(Rect systemWindowInsets) { argument
360 result.mSystemWindowInsets = new Rect(systemWindowInsets);
496 return "WindowInsets{systemWindowInsets=" + mSystemWindowInsets
/frameworks/support/compat/java/android/support/v4/view/
H A DWindowInsetsCompat.java224 * @param systemWindowInsets New system window insets. Each field is the inset in pixels
228 public WindowInsetsCompat replaceSystemWindowInsets(Rect systemWindowInsets) { argument
231 ((WindowInsets) mInsets).replaceSystemWindowInsets(systemWindowInsets));

Completed in 86 milliseconds