Searched refs:onNestedScrollAccepted (Results 1 - 23 of 23) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingParentHelper.java62 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:NestedScrollingParentHelper
64 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
75 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:NestedScrollingParentHelper
H A DNestedScrollingParent.java82 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes); method in interface:NestedScrollingParent
H A DNestedScrollingParent2.java84 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes, method in interface:NestedScrollingParent2
H A DViewParentCompat.java89 * {@link #onNestedScrollAccepted(ViewParent, View, View, int, int)} using the touch input type.
97 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat
99 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
215 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat
219 ((NestedScrollingParent2) parent).onNestedScrollAccepted(child, target,
225 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
228 + "method onNestedScrollAccepted", e);
231 ((NestedScrollingParent) parent).onNestedScrollAccepted(child, target,
H A DNestedScrollingChildHelper.java155 ViewParentCompat.onNestedScrollAccepted(p, child, mView, axes, type);
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java34 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:NestedScrollingParent2Adapter
58 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:NestedScrollingParent2Adapter
59 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewNestedScrollingParentTest.java108 mNestedScrollView.onNestedScrollAccepted(mChild, mChild,
128 mNestedScrollView.onNestedScrollAccepted(
134 verify(mParent, times(1)).onNestedScrollAccepted(
139 verify(mParent, times(1)).onNestedScrollAccepted(
159 mNestedScrollView.onNestedScrollAccepted(
165 verify(mParent, times(1)).onNestedScrollAccepted(
170 verify(mParent, times(1)).onNestedScrollAccepted(
191 mNestedScrollView.onNestedScrollAccepted(
197 verify(mParent, never()).onNestedScrollAccepted(
216 mNestedScrollView.onNestedScrollAccepted(
653 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, int axes, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
755 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTestedFrameLayout.java180 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:TestedFrameLayout
181 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
216 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:TestedFrameLayout
219 mNestedScrollingDelegate.onNestedScrollAccepted(child, target, axes, type);
H A DRecyclerViewLayoutTest.java1882 verify(nsp, atLeastOnce()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1891 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1908 verify(nsp, atLeastOnce()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1917 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1934 verify(nsp, never()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1943 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1961 verify(nsp, never()).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
1970 verify(nsp, times(1)).onNestedScrollAccepted(eq(mRecyclerView), eq(mRecyclerView),
/frameworks/base/core/java/android/view/
H A DViewParent.java541 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); method in interface:ViewParent
H A DViewGroup.java7448 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ViewGroup
H A DViewRootImpl.java7798 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:ViewRootImpl
H A DView.java24568 p.onNestedScrollAccepted(child, this, axes);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java539 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ActionBarOverlayLayout
540 super.onNestedScrollAccepted(child, target, axes);
H A DResolverDrawerLayout.java665 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ResolverDrawerLayout
666 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java1758 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:CoordinatorLayout
1759 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
1763 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes, int type) { method in class:CoordinatorLayout
1764 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes, type);
1777 viewBehavior.onNestedScrollAccepted(this, view, child, target,
2368 * {@link #onNestedScrollAccepted(CoordinatorLayout, View, View, View, int, int)}. This
2372 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2397 * @see NestedScrollingParent2#onNestedScrollAccepted(View, View, int, int)
2399 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2403 onNestedScrollAccepted(coordinatorLayou
[all...]
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DActionBarOverlayLayout.java476 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ActionBarOverlayLayout
477 mParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java305 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, int axes, method in class:NestedScrollView
307 mParentHelper.onNestedScrollAccepted(child, target, axes, type);
342 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:NestedScrollView
343 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
/frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayoutTest.java539 // Verify that the Behavior's onNestedScrollAccepted was called once
540 verify(behavior, times(1)).onNestedScrollAccepted(
605 // Verify that the Behavior's onNestedScrollAccepted was not called
606 verify(behavior, never()).onNestedScrollAccepted(
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java770 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:SwipeRefreshLayout
772 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
H A DWearableDrawerLayout.java876 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:WearableDrawerLayout
878 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes);
/frameworks/base/core/java/android/widget/
H A DScrollView.java1702 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ScrollView
1703 super.onNestedScrollAccepted(child, target, axes);
H A DAbsListView.java4279 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:AbsListView
4280 super.onNestedScrollAccepted(child, target, axes);

Completed in 404 milliseconds