Searched refs:nestedScrollAxes (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | ViewParent.java | 525 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); in onStartNestedScroll() argument 543 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); in onNestedScrollAccepted() argument
|
D | ViewRootImpl.java | 9347 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument 9356 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { in onNestedScrollAccepted() argument
|
D | ViewGroup.java | 7904 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ResolverDrawerLayout.java | 751 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { 752 if ((nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0) {
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 1826 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument 1827 return (nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0; in onStartNestedScroll()
|
D | AbsListView.java | 4397 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll() argument 4398 return ((nestedScrollAxes & SCROLL_AXIS_VERTICAL) != 0); in onStartNestedScroll()
|