/frameworks/support/compat/src/main/java/androidx/core/view/ |
H A D | NestedScrollingChild2.java | 61 * {@link #dispatchNestedPreScroll(int, int, int[], int[], int) dispatchNestedPreScroll} 80 * @see #dispatchNestedPreScroll(int, int, int[], int[], int) 116 * {@link #dispatchNestedPreScroll(int, int, int[], int[], int) dispatchNestedPreScroll} before 129 * @see #dispatchNestedPreScroll(int, int, int[], int[], int) 139 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested 155 boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, method in interface:NestedScrollingChild2
|
H A D | NestedScrollingChild.java | 90 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} 108 * @see #dispatchNestedPreScroll(int, int, int[], int[]) 141 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before 153 * @see #dispatchNestedPreScroll(int, int, int[], int[]) 162 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested 177 boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, method in interface:NestedScrollingChild
|
H A D | NestedScrollingChildHelper.java | 262 public boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, method in class:NestedScrollingChildHelper 264 return dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow, TYPE_TOUCH); 276 public boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, method in class:NestedScrollingChildHelper
|
H A D | ViewCompat.java | 2571 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[], int)} using the touch input 2585 public static boolean dispatchNestedPreScroll(@NonNull View view, int dx, int dy, method in class:ViewCompat 2588 return view.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow); 2591 return ((NestedScrollingChild) view).dispatchNestedPreScroll(dx, dy, consumed, 2614 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[]) dispatchNestedPreScroll} 2633 * @see #dispatchNestedPreScroll(View, int, int, int[], int[]) 2689 * {@link #dispatchNestedPreScroll(View, int, int, int[], int[]) dispatchNestedPreScroll} before 2702 * @see #dispatchNestedPreScroll(Vie 2737 public static boolean dispatchNestedPreScroll(@NonNull View view, int dx, int dy, method in class:ViewCompat [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | NestedScrollingChild.java | 86 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} 104 * @see #dispatchNestedPreScroll(int, int, int[], int[]) 137 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before 149 * @see #dispatchNestedPreScroll(int, int, int[], int[]) 158 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested 173 boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow); method in interface:NestedScrollingChild
|
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/ |
H A D | NestedScrollViewNestedScrollingParentTest.java | 697 public boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView 734 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
|
/frameworks/support/compat/src/main/java/androidx/core/widget/ |
H A D | NestedScrollView.java | 242 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow, method in class:NestedScrollView 244 return mChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow, type); 282 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:NestedScrollView 283 return dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow, ViewCompat.TYPE_TOUCH); 331 dispatchNestedPreScroll(dx, dy, consumed, null, type); 845 if (dispatchNestedPreScroll(0, deltaY, mScrollConsumed, mScrollOffset, 1514 if (dispatchNestedPreScroll(0, dy, mScrollConsumed, null, ViewCompat.TYPE_NON_TOUCH)) {
|
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/ |
H A D | SwipeRefreshLayout.java | 805 if (dispatchNestedPreScroll(dx - consumed[0], dy - consumed[1], parentConsumed, null)) { 884 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:SwipeRefreshLayout 885 return mNestedScrollingChildHelper.dispatchNestedPreScroll(
|
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
H A D | RecyclerView.java | 3105 if (dispatchNestedPreScroll(dx, dy, mScrollConsumed, mScrollOffset, TYPE_TOUCH)) { 5015 if (dispatchNestedPreScroll(dx, dy, scrollConsumed, null, TYPE_NON_TOUCH)) { 11273 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { method in class:RecyclerView 11274 return getScrollingChildHelper().dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow); 11278 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow, method in class:RecyclerView 11280 return getScrollingChildHelper().dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow,
|
/frameworks/base/core/java/android/view/ |
H A D | View.java | 24536 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} 24553 * @see #dispatchNestedPreScroll(int, int, int[], int[]) 24620 * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before 24632 * @see #dispatchNestedPreScroll(int, int, int[], int[]) 24668 * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested 24683 public boolean dispatchNestedPreScroll(int dx, int dy, method in class:View [all...] |