Searched defs:dispatchNestedScroll (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild2.java66 * {@link #dispatchNestedScroll(int, int, int, int, int[], int) dispatchNestedScroll}, passing
80 * @see #dispatchNestedScroll(int, int, int, int, int[], int)
130 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in interface:NestedScrollingChild2
152 * @see #dispatchNestedScroll(int, int, int, int, int[], int)
H A DNestedScrollingChild.java95 * {@link #dispatchNestedScroll(int, int, int, int, int[]) dispatchNestedScroll}, passing
108 * @see #dispatchNestedScroll(int, int, int, int, int[])
154 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in interface:NestedScrollingChild
174 * @see #dispatchNestedScroll(int, int, int, int, int[])
H A DViewCompat.java849 public boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, method in class:ViewCompat.ViewCompatBaseImpl
852 return ((NestedScrollingChild) view).dispatchNestedScroll(dxConsumed, dyConsumed,
1317 public boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, method in class:ViewCompat.ViewCompatApi21Impl
1319 return view.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
3308 * {@link #dispatchNestedScroll(View, int, int, int, int, int[], int)} using the touch input
3321 public static boolean dispatchNestedScroll(@NonNull View view, int dxConsumed, int dyConsumed, method in class:ViewCompat
3323 return IMPL.dispatchNestedScroll(view, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
3372 * {@link #dispatchNestedScroll(View, int, int, int, int, int[]) dispatchNestedScroll}, passing
3386 * @see #dispatchNestedScroll(Vie
3456 public static boolean dispatchNestedScroll(@NonNull View view, int dxConsumed, int dyConsumed, method in class:ViewCompat
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java92 * {@link #dispatchNestedScroll(int, int, int, int, int[]) dispatchNestedScroll}, passing
105 * @see #dispatchNestedScroll(int, int, int, int, int[])
151 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in interface:NestedScrollingChild
171 * @see #dispatchNestedScroll(int, int, int, int, int[])
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java201 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in class:NestedScrollingChildHelper
203 return dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
216 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in class:NestedScrollingChildHelper
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java255 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollView
257 return mChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
262 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollView
264 return mChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
315 dispatchNestedScroll(0, myConsumed, 0, myUnconsumed, null);
835 if (dispatchNestedScroll(0, scrolledDeltaY, 0, unconsumedY, mScrollOffset,
1471 if (!dispatchNestedScroll(0, scrolledDeltaY, 0, unconsumedY, null,
H A DSwipeRefreshLayout.java819 dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
862 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:SwipeRefreshLayout
864 return mNestedScrollingChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed,
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1802 if (dispatchNestedScroll(consumedX, consumedY, unconsumedX, unconsumedY, mScrollOffset,
4893 if (!dispatchNestedScroll(hresult, vresult, overscrollX, overscrollY, null,
10941 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:RecyclerView
10943 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed,
10948 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:RecyclerView
10950 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed,
/frameworks/base/core/java/android/view/
H A DView.java23427 * {@link #dispatchNestedScroll(int, int, int, int, int[]) dispatchNestedScroll}, passing
23439 * @see #dispatchNestedScroll(int, int, int, int, int[])
23519 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in class:View
23566 * @see #dispatchNestedScroll(int, int, int, int, int[])

Completed in 5485 milliseconds