Searched refs:dispatchNestedPreFling (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild.java200 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
211 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
226 public boolean dispatchNestedPreFling(float velocityX, float velocityY); method in interface:NestedScrollingChild
H A DViewCompat.java475 boolean dispatchNestedPreFling(View view, float velocityX, float velocityY); method in interface:ViewCompat.ViewCompatImpl
1083 public boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat.BaseViewCompatImpl
1085 return ((NestedScrollingChild) view).dispatchNestedPreFling(velocityX, velocityY);
1719 public boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat.LollipopViewCompatImpl
1720 return ViewCompatLollipop.dispatchNestedPreFling(view, velocityX, velocityY);
3342 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
3353 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
3368 public static boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat
3369 return IMPL.dispatchNestedPreFling(view, velocityX, velocityY);
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java251 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:NestedScrollingChildHelper
/frameworks/support/compat/api21/android/support/v4/view/
H A DViewCompatLollipop.java180 public static boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompatLollipop
181 return view.dispatchNestedPreFling(velocityX, velocityY);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java256 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:NestedScrollView
257 return mChildHelper.dispatchNestedPreFling(velocityX, velocityY);
305 return dispatchNestedPreFling(velocityX, velocityY);
1715 if (!dispatchNestedPreFling(0, velocityY)) {
H A DSwipeRefreshLayout.java905 return dispatchNestedPreFling(velocityX, velocityY);
920 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:SwipeRefreshLayout
921 return mNestedScrollingChildHelper.dispatchNestedPreFling(velocityX, velocityY);
/frameworks/base/core/java/android/widget/
H A DScrollView.java1622 if (!dispatchNestedPreFling(0, velocityY)) {
H A DAbsListView.java4083 if (!dispatchNestedPreFling(0, -initialVelocity)) {
4103 if (flingVelocity && !dispatchNestedPreFling(0, -initialVelocity)) {
4289 if (!dispatchNestedPreFling(0, velocityY)) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1978 if (!dispatchNestedPreFling(velocityX, velocityY)) {
10174 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:RecyclerView
10175 return getScrollingChildHelper().dispatchNestedPreFling(velocityX, velocityY);
/frameworks/base/core/java/android/view/
H A DViewGroup.java6833 return dispatchNestedPreFling(velocityX, velocityY);
H A DView.java21404 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
21415 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
21430 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:View

Completed in 343 milliseconds