Home
last modified time | relevance | path

Searched refs:onNestedScrollAccepted (Results 1 – 25 of 46) sorted by relevance

12

/frameworks/support/compat/java/android/support/v4/view/
DViewParentCompat.java47 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted() method in ViewParentCompat.ViewParentCompatBaseImpl
50 ((NestedScrollingParent) parent).onNestedScrollAccepted(child, target, in onNestedScrollAccepted()
124 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted() method in ViewParentCompat.ViewParentCompatApi21Impl
127 parent.onNestedScrollAccepted(child, target, nestedScrollAxes); in onNestedScrollAccepted()
264 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted() method in ViewParentCompat
266 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH); in onNestedScrollAccepted()
370 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted() method in ViewParentCompat
374 ((NestedScrollingParent2) parent).onNestedScrollAccepted(child, target, in onNestedScrollAccepted()
378 IMPL.onNestedScrollAccepted(parent, child, target, nestedScrollAxes); in onNestedScrollAccepted()
DNestedScrollingParent2.java84 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes, in onNestedScrollAccepted() method
DNestedScrollingParent.java81 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes); in onNestedScrollAccepted() method
/frameworks/support/core-ui/java/android/support/v4/view/
DNestedScrollingParentHelper.java61 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted() method in NestedScrollingParentHelper
63 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH); in onNestedScrollAccepted()
74 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted() method in NestedScrollingParentHelper
DNestedScrollingChildHelper.java154 ViewParentCompat.onNestedScrollAccepted(p, child, mView, axes, type); in startNestedScroll()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
DNestedScrollingParent2Adapter.java34 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted() method in NestedScrollingParent2Adapter
58 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted() method in NestedScrollingParent2Adapter
59 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH); in onNestedScrollAccepted()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DTestedFrameLayout.java139 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted() method in TestedFrameLayout
140 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH); in onNestedScrollAccepted()
175 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted() method in TestedFrameLayout
178 mNestedScrollingDelegate.onNestedScrollAccepted(child, target, axes, type); in onNestedScrollAccepted()
DRecyclerViewLayoutTest.java1360 verify(nsp, atLeastOnce()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedDragVertical()
1369 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedDragVertical()
1386 verify(nsp, atLeastOnce()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedDragHorizontal()
1395 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedDragHorizontal()
1412 verify(nsp, never()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedFlingVertical()
1421 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedFlingVertical()
1439 verify(nsp, never()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedFlingHorizontal()
1448 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView), in nestedFlingHorizontal()
/frameworks/base/core/java/android/view/
DViewParent.java541 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); in onNestedScrollAccepted() method
DViewGroup.java7279 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted() method in ViewGroup
DViewRootImpl.java7330 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { in onNestedScrollAccepted() method in ViewRootImpl
/frameworks/support/design/src/android/support/design/widget/
DCoordinatorLayout.java1732 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { in onNestedScrollAccepted() method in CoordinatorLayout
1733 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH); in onNestedScrollAccepted()
1737 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes, int type) { in onNestedScrollAccepted() method in CoordinatorLayout
1738 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes, type); in onNestedScrollAccepted()
1751 viewBehavior.onNestedScrollAccepted(this, view, child, target, in onNestedScrollAccepted()
2320 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, in onNestedScrollAccepted() method in CoordinatorLayout.Behavior
2347 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, in onNestedScrollAccepted() method in CoordinatorLayout.Behavior
2351 onNestedScrollAccepted(coordinatorLayout, child, directTargetChild, in onNestedScrollAccepted()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DActionBarOverlayLayout.java475 public void onNestedScrollAccepted(View child, View target, int axes) {
476 mParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java529 public void onNestedScrollAccepted(View child, View target, int axes) {
530 super.onNestedScrollAccepted(child, target, axes);
DResolverDrawerLayout.java630 public void onNestedScrollAccepted(View child, View target, int axes) {
631 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/core-ui/java/android/support/v4/widget/
DSwipeRefreshLayout.java756 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted() method in SwipeRefreshLayout
758 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes); in onNestedScrollAccepted()
DNestedScrollView.java297 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { in onNestedScrollAccepted() method in NestedScrollView
298 mParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes); in onNestedScrollAccepted()
/frameworks/support/wear/src/android/support/wear/widget/drawer/
DWearableDrawerLayout.java877 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { in onNestedScrollAccepted() method in WearableDrawerLayout
878 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes); in onNestedScrollAccepted()
/frameworks/support/design/tests/src/android/support/design/widget/
DCoordinatorLayoutTest.java535 verify(behavior, times(1)).onNestedScrollAccepted( in testNestedScrollingDispatchesToBehavior()
601 verify(behavior, never()).onNestedScrollAccepted( in testNestedScrollingDispatchingToBehaviorWithGoneView()
/frameworks/base/core/java/android/widget/
DScrollView.java1702 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted() method in ScrollView
1703 super.onNestedScrollAccepted(child, target, axes); in onNestedScrollAccepted()
DAbsListView.java4276 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted() method
4277 super.onNestedScrollAccepted(child, target, axes); in onNestedScrollAccepted()
/frameworks/support/api/
D26.0.0-SNAPSHOT.txt630 method public void onNestedScrollAccepted(android.view.View, android.view.View, int, int);
661 …method public deprecated void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayo…
662 …method public void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayout, V, andr…
8647 method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int);
8655 …method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int, int);
8663 method public void onNestedScrollAccepted(android.view.View, android.view.View, int);
8664 method public void onNestedScrollAccepted(android.view.View, android.view.View, int, int);
9051 …method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, andro…
9052 …method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, andro…
D26.0.0-beta2.txt630 method public void onNestedScrollAccepted(android.view.View, android.view.View, int, int);
661 …method public deprecated void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayo…
662 …method public void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayout, V, andr…
8636 method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int);
8644 …method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int, int);
8652 method public void onNestedScrollAccepted(android.view.View, android.view.View, int);
8653 method public void onNestedScrollAccepted(android.view.View, android.view.View, int, int);
9040 …method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, andro…
9041 …method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, andro…
D22.2.0.txt137 …method public void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayout, V, andr…
3999 method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int);
4007 method public void onNestedScrollAccepted(android.view.View, android.view.View, int);
4302 …method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, andro…
D22.2.1.txt138 …method public void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayout, V, andr…
4028 method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int);
4036 method public void onNestedScrollAccepted(android.view.View, android.view.View, int);
4331 …method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, andro…

12