/frameworks/support/compat/src/main/java/androidx/core/view/ |
H A D | NestedScrollingChild2.java | 67 * {@link #dispatchNestedScroll(int, int, int, int, int[], int) dispatchNestedScroll}, passing 81 * @see #dispatchNestedScroll(int, int, int, int, int[], int) 131 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in interface:NestedScrollingChild2 153 * @see #dispatchNestedScroll(int, int, int, int, int[], int)
|
H A D | NestedScrollingChild.java | 96 * {@link #dispatchNestedScroll(int, int, int, int, int[]) dispatchNestedScroll}, passing 109 * @see #dispatchNestedScroll(int, int, int, int, int[]) 155 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in interface:NestedScrollingChild 175 * @see #dispatchNestedScroll(int, int, int, int, int[])
|
H A D | NestedScrollingChildHelper.java | 202 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in class:NestedScrollingChildHelper 204 return dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, 217 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in class:NestedScrollingChildHelper
|
H A D | ViewCompat.java | 2540 * {@link #dispatchNestedScroll(View, int, int, int, int, int[], int)} using the touch input 2554 public static boolean dispatchNestedScroll(@NonNull View view, int dxConsumed, int dyConsumed, method in class:ViewCompat 2557 return view.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, 2561 return ((NestedScrollingChild) view).dispatchNestedScroll(dxConsumed, dyConsumed, 2620 * {@link #dispatchNestedScroll(View, int, int, int, int, int[]) dispatchNestedScroll}, passing 2634 * @see #dispatchNestedScroll(View, int, int, int, int, int[]) 2704 public static boolean dispatchNestedScroll(@NonNull View view, int dxConsumed, int dyConsumed, method in class:ViewCompat 2708 return ((NestedScrollingChild2) view).dispatchNestedScroll(dxConsumed, dyConsumed, 2711 return dispatchNestedScroll(vie [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | NestedScrollingChild.java | 92 * {@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/compat/src/androidTest/java/androidx/core/widget/ |
H A D | NestedScrollViewNestedScrollingParentTest.java | 691 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView 728 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
|
/frameworks/support/compat/src/main/java/androidx/core/widget/ |
H A D | NestedScrollView.java | 235 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollView 237 return mChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, 275 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollView 277 return dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, 324 dispatchNestedScroll(0, myConsumed, 0, myUnconsumed, null, 883 if (dispatchNestedScroll(0, scrolledDeltaY, 0, unconsumedY, mScrollOffset, 1527 if (!dispatchNestedScroll(0, scrolledDeltaY, 0, unconsumedY, null,
|
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/ |
H A D | SwipeRefreshLayout.java | 834 dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, 877 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:SwipeRefreshLayout 879 return mNestedScrollingChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed,
|
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
H A D | RecyclerView.java | 1891 if (dispatchNestedScroll(consumedX, consumedY, unconsumedX, unconsumedY, mScrollOffset, 5047 if (!dispatchNestedScroll(hresult, vresult, overscrollX, overscrollY, null, 11259 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:RecyclerView 11261 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed, 11266 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:RecyclerView 11268 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed,
|
/frameworks/base/core/java/android/view/ |
H A D | View.java | 24542 * {@link #dispatchNestedScroll(int, int, int, int, int[]) dispatchNestedScroll}, passing 24554 * @see #dispatchNestedScroll(int, int, int, int, int[]) 24634 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, method in class:View 24681 * @see #dispatchNestedScroll(int, int, int, int, int[]) [all...] |