/frameworks/support/v4/java/android/support/v4/view/ |
D | ViewParentCompat.java | 43 void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument 94 public void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument 97 ((NestedScrollingParent) parent).onNestedScroll(target, dxConsumed, dyConsumed, in onNestedScroll() 175 public void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument 177 ViewParentCompatLollipop.onNestedScroll(parent, target, dxConsumed, dyConsumed, in onNestedScroll() 326 public static void onNestedScroll(ViewParent parent, View target, int dxConsumed, in onNestedScroll() argument 328 IMPL.onNestedScroll(parent, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed); in onNestedScroll()
|
D | NestedScrollingChildHelper.java | 150 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument 153 if (dxConsumed != 0 || dyConsumed != 0 || dxUnconsumed != 0 || dyUnconsumed != 0) { in dispatchNestedScroll() 162 ViewParentCompat.onNestedScroll(mNestedScrollingParent, mView, dxConsumed, in dispatchNestedScroll()
|
D | NestedScrollingChild.java | 152 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument
|
D | NestedScrollingParent.java | 115 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
D | ViewCompat.java | 462 boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, int dxUnconsumed, in dispatchNestedScroll() argument 1010 public boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument 1013 return ((NestedScrollingChild) view).dispatchNestedScroll(dxConsumed, dyConsumed, in dispatchNestedScroll() 1648 public boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument 1650 return ViewCompatLollipop.dispatchNestedScroll(view, dxConsumed, dyConsumed, in dispatchNestedScroll() 3179 public static boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument 3181 return IMPL.dispatchNestedScroll(view, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, in dispatchNestedScroll()
|
/frameworks/support/v4/api21/android/support/v4/view/ |
D | ViewParentCompatLollipop.java | 57 public static void onNestedScroll(ViewParent parent, View target, int dxConsumed, in onNestedScroll() argument 60 parent.onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed); in onNestedScroll()
|
D | ViewCompatLollipop.java | 177 public static boolean dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument 179 return view.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, in dispatchNestedScroll()
|
/frameworks/base/core/java/android/view/ |
D | ViewParent.java | 535 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
D | ViewGroup.java | 6828 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument 6831 dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, null); in onNestedScroll()
|
D | View.java | 21120 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, in dispatchNestedScroll() argument 21123 if (dxConsumed != 0 || dyConsumed != 0 || dxUnconsumed != 0 || dyUnconsumed != 0) { in dispatchNestedScroll() 21132 mNestedScrollingParent.onNestedScroll(this, dxConsumed, dyConsumed, in dispatchNestedScroll()
|
D | ViewRootImpl.java | 6903 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
/frameworks/support/v4/java/android/support/v4/widget/ |
D | SwipeRefreshLayout.java | 815 public void onNestedScroll(final View target, final int dxConsumed, final int dyConsumed, in onNestedScroll() argument 818 dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, in onNestedScroll() 861 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, in dispatchNestedScroll() argument 863 return mNestedScrollingChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed, in dispatchNestedScroll()
|
D | NestedScrollView.java | 236 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, in dispatchNestedScroll() argument 238 return mChildHelper.dispatchNestedScroll(dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, in dispatchNestedScroll() 277 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, in onNestedScroll() argument
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
D | TestedFrameLayout.java | 162 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, in onNestedScroll() argument
|
/frameworks/support/design/src/android/support/design/widget/ |
D | CoordinatorLayout.java | 1531 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument 1545 viewBehavior.onNestedScroll(this, view, target, dxConsumed, dyConsumed, in onNestedScroll() 2069 int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) { in onNestedScroll() argument
|
D | AppBarLayout.java | 818 View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
D | ActionBarOverlayLayout.java | 477 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarOverlayLayout.java | 534 public void onNestedScroll(View target, int dxConsumed, int dyConsumed,
|
D | ResolverDrawerLayout.java | 633 public void onNestedScroll(View target, int dxConsumed, int dyConsumed,
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 1699 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
D | AbsListView.java | 4269 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll() argument
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
D | RecyclerView.java | 9780 public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, in dispatchNestedScroll() argument 9782 return getScrollingChildHelper().dispatchNestedScroll(dxConsumed, dyConsumed, in dispatchNestedScroll()
|