Searched refs:nestedScrollAxes (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | ViewParent.java | 524 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); in onStartNestedScroll() argument 542 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); in onNestedScrollAccepted() argument
|
D | ViewRootImpl.java | 8407 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument 8416 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { in onNestedScrollAccepted() argument
|
D | ViewGroup.java | 7650 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ResolverDrawerLayout.java | 707 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { 708 if ((nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0) {
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 1793 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument 1794 return (nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0; in onStartNestedScroll()
|
D | AbsListView.java | 4342 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument 4343 return ((nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0); in onStartNestedScroll()
|