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

/frameworks/support/v4/java/android/support/v4/view/
H A DNestedScrollingParent.java57 * @param nestedScrollAxes Flags consisting of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL},
61 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
74 * @param nestedScrollAxes Flags consisting of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL},
79 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
H A DViewParentCompat.java39 int nestedScrollAxes);
41 int nestedScrollAxes);
69 int nestedScrollAxes) {
72 nestedScrollAxes);
79 int nestedScrollAxes) {
82 nestedScrollAxes);
157 int nestedScrollAxes) {
159 nestedScrollAxes);
164 int nestedScrollAxes) {
166 nestedScrollAxes);
38 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
40 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
68 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
78 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
156 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
163 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
266 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
287 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewParentCompatLollipop.java28 int nestedScrollAxes) {
30 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
39 int nestedScrollAxes) {
41 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
27 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
38 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
/frameworks/base/core/java/android/view/
H A DViewParent.java449 * @param nestedScrollAxes Flags consisting of {@link View#SCROLL_AXIS_HORIZONTAL},
453 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
466 * @param nestedScrollAxes Flags consisting of {@link View#SCROLL_AXIS_HORIZONTAL},
471 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
H A DViewRootImpl.java6588 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
6597 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { argument
H A DViewGroup.java6633 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DTestedFrameLayout.java40 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java1397 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
1407 nestedScrollAxes);
1418 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { argument
1419 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes);
1433 viewBehavior.onNestedScrollAccepted(this, view, child, target, nestedScrollAxes);
1909 * @param nestedScrollAxes the axes that this nested scroll applies to. See
1917 V child, View directTargetChild, View target, int nestedScrollAxes) {
1935 * @param nestedScrollAxes the axes that this nested scroll applies to. See
1942 View directTargetChild, View target, int nestedScrollAxes) {
1916 onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) argument
1941 onNestedScrollAccepted(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) argument
H A DAppBarLayout.java660 View directTargetChild, View target, int nestedScrollAxes) {
663 final boolean started = (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0
659 onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child, View directTargetChild, View target, int nestedScrollAxes) argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java236 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
237 return (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0;
241 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { argument
242 mParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes);
H A DSwipeRefreshLayout.java730 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
731 if (isEnabled() && (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0) {
733 startNestedScroll(nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL);
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java599 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
600 return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
/frameworks/base/core/java/android/widget/
H A DScrollView.java1670 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
1671 return (nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0;
H A DAbsListView.java4120 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
4121 return ((nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0);

Completed in 470 milliseconds