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

/frameworks/support/v4/donut/android/support/v4/view/
H A DWindowInsetsCompat.java165 * @param systemWindowInsets New system window insets. Each field is the inset in pixels
169 public WindowInsetsCompat replaceSystemWindowInsets(Rect systemWindowInsets) { argument
/frameworks/base/core/java/android/view/
H A DWindowInsets.java59 public WindowInsets(Rect systemWindowInsets, Rect windowDecorInsets, Rect stableInsets, argument
61 mSystemWindowInsetsConsumed = systemWindowInsets == null;
62 mSystemWindowInsets = mSystemWindowInsetsConsumed ? EMPTY_RECT : systemWindowInsets;
89 public WindowInsets(Rect systemWindowInsets) { argument
90 this(systemWindowInsets, null, null, false);
345 * @param systemWindowInsets New system window insets. Each field is the inset in pixels
349 public WindowInsets replaceSystemWindowInsets(Rect systemWindowInsets) { argument
351 result.mSystemWindowInsets = new Rect(systemWindowInsets);
480 return "WindowInsets{systemWindowInsets=" + mSystemWindowInsets
/frameworks/support/v4/api21/android/support/v4/view/
H A DWindowInsetsCompatApi21.java81 public WindowInsetsCompat replaceSystemWindowInsets(Rect systemWindowInsets) { argument
82 return new WindowInsetsCompatApi21(mSource.replaceSystemWindowInsets(systemWindowInsets));

Completed in 135 milliseconds