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

/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java199 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
210 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
225 boolean dispatchNestedPreFling(float velocityX, float velocityY); method in interface:NestedScrollingChild
H A DRecyclerView.java2012 if (!dispatchNestedPreFling(velocityX, velocityY)) {
/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild.java203 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
214 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
229 boolean dispatchNestedPreFling(float velocityX, float velocityY); method in interface:NestedScrollingChild
H A DViewCompat.java876 public boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat.ViewCompatBaseImpl
878 return ((NestedScrollingChild) view).dispatchNestedPreFling(velocityX, velocityY);
1336 public boolean dispatchNestedPreFling(View view, float velocityX, float velocityY) { method in class:ViewCompat.ViewCompatApi21Impl
1337 return view.dispatchNestedPreFling(velocityX, velocityY);
3527 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
3538 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
3553 public static boolean dispatchNestedPreFling(@NonNull View view, float velocityX, method in class:ViewCompat
3555 return IMPL.dispatchNestedPreFling(view, velocityX, velocityY);
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java345 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:NestedScrollingChildHelper
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java285 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:NestedScrollView
286 return mChildHelper.dispatchNestedPreFling(velocityX, velocityY);
334 return dispatchNestedPreFling(velocityX, velocityY);
1764 if (!dispatchNestedPreFling(0, velocityY)) {
H A DSwipeRefreshLayout.java877 return dispatchNestedPreFling(velocityX, velocityY);
892 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:SwipeRefreshLayout
893 return mNestedScrollingChildHelper.dispatchNestedPreFling(velocityX, velocityY);
/frameworks/base/core/java/android/widget/
H A DScrollView.java1639 if (!dispatchNestedPreFling(0, velocityY)) {
H A DAbsListView.java4089 if (!dispatchNestedPreFling(0, -initialVelocity)) {
4109 if (flingVelocity && !dispatchNestedPreFling(0, -initialVelocity)) {
4300 if (!dispatchNestedPreFling(0, velocityY)) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2142 if (!dispatchNestedPreFling(velocityX, velocityY)) {
10972 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:RecyclerView
10973 return getScrollingChildHelper().dispatchNestedPreFling(velocityX, velocityY);
/frameworks/base/core/java/android/view/
H A DViewGroup.java7352 return dispatchNestedPreFling(velocityX, velocityY);
H A DView.java23633 * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
23644 * call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
23659 public boolean dispatchNestedPreFling(float velocityX, float velocityY) { method in class:View

Completed in 5064 milliseconds