Searched refs:nestedScrollAxes (Results 1 - 14 of 14) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/view/
H A DViewParentCompat.java76 * @param nestedScrollAxes Flags consisting of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL},
81 int nestedScrollAxes) {
82 return onStartNestedScroll(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
94 * @param nestedScrollAxes Flags consisting of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL},
98 int nestedScrollAxes) {
99 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
168 * @param nestedScrollAxes Flags consisting of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL},
175 int nestedScrollAxes, int type) {
179 nestedScrollAxes, type);
184 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
80 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
97 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
174 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
215 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java53 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
54 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
/frameworks/base/core/java/android/view/
H A DViewParent.java519 * @param nestedScrollAxes Flags consisting of {@link View#SCROLL_AXIS_HORIZONTAL},
523 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
536 * @param nestedScrollAxes Flags consisting of {@link View#SCROLL_AXIS_HORIZONTAL},
541 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
H A DViewRootImpl.java7789 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
7798 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { argument
H A DViewGroup.java7440 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTestedFrameLayout.java175 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
176 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
/frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
H A DWearableDrawerLayout.java877 int nestedScrollAxes) {
878 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes);
883 int nestedScrollAxes) {
876 onNestedScrollAccepted(@onNull View child, @NonNull View target, int nestedScrollAxes) argument
882 onStartNestedScroll(@onNull View child, @NonNull View target, int nestedScrollAxes) argument
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java1728 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
1729 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
1758 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { argument
1759 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
1763 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes, int type) { argument
1764 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes, type);
1778 nestedScrollAxes, type);
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java337 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
338 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
342 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { argument
343 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java660 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
661 return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java764 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
766 && (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0;
/frameworks/base/core/java/android/widget/
H A DScrollView.java1697 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
1698 return (nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0;
H A DAbsListView.java4274 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
4275 return ((nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0);
/frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayoutTest.java734 View directTargetChild, View target, int nestedScrollAxes) {
733 onStartNestedScroll(CoordinatorLayout coordinatorLayout, View child, View directTargetChild, View target, int nestedScrollAxes) argument

Completed in 710 milliseconds