Searched defs:dispatchNestedPreFling (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/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 DNestedScrollingChildHelper.java250 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:NestedScrollingChildHelper
H A DViewCompat.java467 boolean dispatchNestedPreFling(View view, float velocityX, float velocityY); method in interface:ViewCompat.ViewCompatImpl
1040 public boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat.BaseViewCompatImpl
1042 return ((NestedScrollingChild) view).dispatchNestedPreFling(velocityX, velocityY);
1668 public boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat.LollipopViewCompatImpl
1669 return ViewCompatLollipop.dispatchNestedPreFling(view, velocityX, velocityY);
3236 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
3247 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
3262 public static boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat
3263 return IMPL.dispatchNestedPreFling(view, velocityX, velocityY);
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java193 public static boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompatLollipop
194 return view.dispatchNestedPreFling(velocityX, velocityY);
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java253 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:NestedScrollView
254 return mChildHelper.dispatchNestedPreFling(velocityX, velocityY);
302 return dispatchNestedPreFling(velocityX, velocityY);
1709 if (!dispatchNestedPreFling(0, velocityY)) {
H A DSwipeRefreshLayout.java875 return dispatchNestedPreFling(velocityX, velocityY);
890 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:SwipeRefreshLayout
891 return mNestedScrollingChildHelper.dispatchNestedPreFling(velocityX, velocityY);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1890 if (!dispatchNestedPreFling(velocityX, velocityY)) {
9797 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:RecyclerView
9798 return getScrollingChildHelper().dispatchNestedPreFling(velocityX, velocityY);
/frameworks/base/core/java/android/view/
H A DView.java21234 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
21245 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
21260 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:View

Completed in 883 milliseconds