Searched refs:dispatchNestedPreScroll (Results 1 - 12 of 12) 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.java464 boolean dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, method in interface:ViewCompat.ViewCompatImpl
1020 public boolean dispatchNestedPreScroll(View view, int dx, int dy, method in class:ViewCompat.BaseViewCompatImpl
1023 return ((NestedScrollingChild) view).dispatchNestedPreScroll(dx, dy, consumed,
1655 public boolean dispatchNestedPreScroll(View view, int dx, int dy, method in class:ViewCompat.LollipopViewCompatImpl
1657 return ViewCompatLollipop.dispatchNestedPreScroll(view, dx, dy, consumed,
3108 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[]) dispatchNestedPreScroll}
3126 * @see #dispatchNestedPreScroll(View, int, int, int[], int[])
3165 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[]) dispatchNestedPreScroll} befor
3204 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.java183 public static boolean dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, method in class:ViewCompatLollipop
185 return view.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java243 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:NestedScrollView
244 return mChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
288 dispatchNestedPreScroll(dx, dy, consumed, null);
767 if (dispatchNestedPreScroll(0, deltaY, mScrollConsumed, mScrollOffset)) {
H A DSwipeRefreshLayout.java789 if (dispatchNestedPreScroll(dx - consumed[0], dy - consumed[1], parentConsumed, null)) {
868 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:SwipeRefreshLayout
869 return mNestedScrollingChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
/frameworks/base/core/java/android/widget/
H A DScrollView.java653 if (dispatchNestedPreScroll(0, deltaY, mScrollConsumed, mScrollOffset)) {
H A DAbsListView.java3515 if (dispatchNestedPreScroll(0, mLastY != Integer.MIN_VALUE ? mLastY - y : -rawDeltaY,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java1116 view.dispatchNestedPreScroll(scrollPosX, scrollPosY, consumed, null);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2613 if (dispatchNestedPreScroll(dx, dy, mScrollConsumed, mScrollOffset)) {
9787 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:RecyclerView
9788 return getScrollingChildHelper().dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
/frameworks/base/core/java/android/view/
H A DViewGroup.java6840 dispatchNestedPreScroll(dx, dy, consumed, null);
H A DView.java21022 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll}
21039 * @see #dispatchNestedPreScroll(int, int, int[], int[])
21106 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before
21118 * @see #dispatchNestedPreScroll(int, int, int[], int[])
21154 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested
21169 public boolean dispatchNestedPreScroll(int dx, int dy, method in class:View

Completed in 1143 milliseconds