Searched refs:dispatchApplyWindowInsets (Results 1 - 9 of 9) 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/widget/
H A DDrawerLayoutCompatApi21.java54 child.dispatchApplyWindowInsets(wi);
/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);
H A DViewPager.java442 // ViewGroup dispatchApplyWindowInsets since if child 0 consumes them,
455 .dispatchApplyWindowInsets(getChildAt(i), applied);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java443 mContent.dispatchApplyWindowInsets(new WindowInsets(mInnerInsets));
/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
H A DViewRootImpl.java1422 host.dispatchApplyWindowInsets(getWindowInsets(true /* forceConstruct */));

Completed in 3031 milliseconds