Searched defs:dispatchNestedPreScroll (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/java/android/support/v4/view/
H A DNestedScrollingChild.java87 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll}
105 * @see #dispatchNestedPreScroll(int, int, int[], int[])
138 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before
150 * @see #dispatchNestedPreScroll(int, int, int[], int[])
159 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested
174 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow); method in interface:NestedScrollingChild
H A DNestedScrollingChildHelper.java189 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:NestedScrollingChildHelper
H A DViewCompat.java379 boolean dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, method in interface:ViewCompat.ViewCompatImpl
920 public boolean dispatchNestedPreScroll(View view, int dx, int dy, method in class:ViewCompat.BaseViewCompatImpl
923 return ((NestedScrollingChild) view).dispatchNestedPreScroll(dx, dy, consumed,
1474 public boolean dispatchNestedPreScroll(View view, int dx, int dy, method in class:ViewCompat.LollipopViewCompatImpl
1476 return ViewCompatLollipop.dispatchNestedPreScroll(view, dx, dy, consumed,
2851 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[]) dispatchNestedPreScroll}
2869 * @see #dispatchNestedPreScroll(View, int, int, int[], int[])
2908 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[]) dispatchNestedPreScroll} befor
2947 public static boolean dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, method in class:ViewCompat
[all...]
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java145 public static boolean dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, method in class:ViewCompatLollipop
147 return view.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java219 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:NestedScrollView
220 return mChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
723 if (dispatchNestedPreScroll(0, deltaY, mScrollConsumed, mScrollOffset)) {
H A DSwipeRefreshLayout.java764 if (dispatchNestedPreScroll(dx - consumed[0], dy - consumed[1], parentConsumed, null)) {
845 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:SwipeRefreshLayout
846 return mNestedScrollingChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2307 if (dispatchNestedPreScroll(dx, dy, mScrollConsumed, mScrollOffset)) {
8700 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:RecyclerView
8701 return mScrollingChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
/frameworks/base/core/java/android/view/
H A DView.java19966 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll}
19983 * @see #dispatchNestedPreScroll(int, int, int[], int[])
20050 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before
20062 * @see #dispatchNestedPreScroll(int, int, int[], int[])
20098 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested
20113 public boolean dispatchNestedPreScroll(int dx, int dy, method in class:View

Completed in 292 milliseconds