Searched refs:dyConsumed (Results 1 - 25 of 25) sorted by relevance

/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java43 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
68 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
70 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java141 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
151 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, argument
H A DActionBarOverlayLayout.java549 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
551 mHideOnContentScrollReference += dyConsumed;
H A DResolverDrawerLayout.java678 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingChild.java145 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
155 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, argument
H A DNestedScrollingChild2.java120 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
131 boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, argument
H A DNestedScrollingParent.java114 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
118 void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
H A DNestedScrollingParent2.java118 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
123 void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
H A DViewParentCompat.java123 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
128 int dyConsumed, int dxUnconsumed, int dyUnconsumed) {
129 onNestedScroll(parent, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
286 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
293 int dyConsumed, int dxUnconsumed, int dyUnconsumed, int type) {
296 ((NestedScrollingParent2) parent).onNestedScroll(target, dxConsumed, dyConsumed,
302 parent.onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed,
309 ((NestedScrollingParent) parent).onNestedScroll(target, dxConsumed, dyConsumed,
127 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
292 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int type) argument
H A DNestedScrollingChildHelper.java202 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, argument
204 return dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
217 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, argument
226 if (dxConsumed != 0 || dyConsumed != 0 || dxUnconsumed != 0 || dyUnconsumed != 0) {
236 dyConsumed, dxUnconsumed, dyUnconsumed, type);
H A DViewCompat.java2544 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
2554 public static boolean dispatchNestedScroll(@NonNull View view, int dxConsumed, int dyConsumed, argument
2557 return view.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
2561 return ((NestedScrollingChild) view).dispatchNestedScroll(dxConsumed, dyConsumed,
2693 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
2704 public static boolean dispatchNestedScroll(@NonNull View view, int dxConsumed, int dyConsumed, argument
2708 return ((NestedScrollingChild2) view).dispatchNestedScroll(dxConsumed, dyConsumed,
2711 return dispatchNestedScroll(view, dxConsumed, dyConsumed, dxUnconsumed,
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTestedFrameLayout.java190 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
192 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
236 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
239 mNestedScrollingDelegate.onNestedScroll(target, dxConsumed, dyConsumed,
/frameworks/base/core/java/android/view/
H A DViewParent.java573 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
577 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
H A DViewGroup.java7469 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
7472 dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, null);
H A DView.java24624 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
24634 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, argument
24637 if (dxConsumed != 0 || dyConsumed != 0 || dxUnconsumed != 0 || dyUnconsumed != 0) {
24646 mNestedScrollingParent.onNestedScroll(this, dxConsumed, dyConsumed,
[all...]
H A DViewRootImpl.java7802 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewNestedScrollingParentTest.java664 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
691 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
728 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
765 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java831 public void onNestedScroll(final View target, final int dxConsumed, final int dyConsumed, argument
834 dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
877 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
879 return mNestedScrollingChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed,
/frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
H A DWearableDrawerLayout.java682 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
685 boolean scrolledUp = dyConsumed < 0;
686 boolean scrolledDown = dyConsumed > 0;
736 mCurrentNestedScrollSlopTracker += dyConsumed;
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java235 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
237 return mChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
275 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
277 return dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
318 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
352 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
354 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DActionBarOverlayLayout.java486 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
488 mHideOnContentScrollReference += dyConsumed;
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java1811 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
1813 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
1818 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
1837 viewBehavior.onNestedScroll(this, view, target, dxConsumed, dyConsumed,
2455 @NonNull View target, int dxConsumed, int dyConsumed,
2480 * @param dyConsumed vertical pixels consumed by the target's own scrolling operation
2490 @NonNull View target, int dxConsumed, int dyConsumed,
2493 onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed,
2454 onNestedScroll(@onNull CoordinatorLayout coordinatorLayout, @NonNull V child, @NonNull View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
2489 onNestedScroll(@onNull CoordinatorLayout coordinatorLayout, @NonNull V child, @NonNull View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, @NestedScrollType int type) argument
/frameworks/base/core/java/android/widget/
H A DScrollView.java1716 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
H A DAbsListView.java4285 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java11259 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
11261 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed,
11266 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, argument
11268 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed,

Completed in 1147 milliseconds