Searched defs:dispatchApplyWindowInsets (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/v7/appcompat/tests/src/android/support/v7/custom/
H A DCustomDrawerLayout.java41 public WindowInsets dispatchApplyWindowInsets(WindowInsets insets) { method in class:CustomDrawerLayout
43 return super.dispatchApplyWindowInsets(insets);
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java142 public static WindowInsetsCompat dispatchApplyWindowInsets(View v, WindowInsetsCompat insets) { method in class:ViewCompatLollipop
146 // Now call dispatchApplyWindowInsets
147 WindowInsets result = v.dispatchApplyWindowInsets(unwrapped);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java449 WindowInsetsCompat dispatchApplyWindowInsets(View v, WindowInsetsCompat insets); method in interface:ViewCompat.ViewCompatImpl
910 public WindowInsetsCompat dispatchApplyWindowInsets(View v, WindowInsetsCompat insets) { method in class:ViewCompat.BaseViewCompatImpl
1703 public WindowInsetsCompat dispatchApplyWindowInsets(View v, WindowInsetsCompat insets) { method in class:ViewCompat.LollipopViewCompatImpl
1704 return ViewCompatLollipop.dispatchApplyWindowInsets(v, insets);
2955 public static WindowInsetsCompat dispatchApplyWindowInsets(View view, method in class:ViewCompat
2957 return IMPL.dispatchApplyWindowInsets(view, insets);
/frameworks/base/core/java/android/view/
H A DViewGroup.java6434 public WindowInsets dispatchApplyWindowInsets(WindowInsets insets) { method in class:ViewGroup
6435 insets = super.dispatchApplyWindowInsets(insets);
6439 insets = getChildAt(i).dispatchApplyWindowInsets(insets);
H A DView.java7676 * @deprecated As of API 20 use {@link #dispatchApplyWindowInsets(WindowInsets)} to apply
7694 return dispatchApplyWindowInsets(new WindowInsets(insets)).isConsumed();
7729 * to apply insets should call {@link #dispatchApplyWindowInsets(WindowInsets)}.</p>
7802 public WindowInsets dispatchApplyWindowInsets(WindowInsets insets) { method in class:View

Completed in 622 milliseconds