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

/frameworks/support/compat/api21/android/support/v4/view/
H A DWindowInsetsCompatApi21.java51 public static Object replaceSystemWindowInsets(Object insets, Rect systemWindowInsets) { argument
52 return ((WindowInsets) insets).replaceSystemWindowInsets(systemWindowInsets);
/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.java42 WindowInsetsCompat replaceSystemWindowInsets(Object insets, Rect systemWindowInsets); argument
107 public WindowInsetsCompat replaceSystemWindowInsets(Object insets, Rect systemWindowInsets) { argument
246 Rect systemWindowInsets) {
248 systemWindowInsets));
411 * @param systemWindowInsets New system window insets. Each field is the inset in pixels
415 public WindowInsetsCompat replaceSystemWindowInsets(Rect systemWindowInsets) { argument
416 return IMPL.replaceSystemWindowInsets(mInsets, systemWindowInsets);
245 replaceSystemWindowInsets(Object insets, Rect systemWindowInsets) argument

Completed in 18 milliseconds