Searched refs:onStartNestedScroll (Results 1 - 23 of 23) sorted by last modified time

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java467 public boolean onStartNestedScroll(View child, View target, int axes) { method in class:ActionBarOverlayLayout
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewLayoutTest.java1464 verify(nsp, atLeastOnce()).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1473 verify(nsp, times(1)).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1490 verify(nsp, atLeastOnce()).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1499 verify(nsp, times(1)).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1516 verify(nsp, never()).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1525 verify(nsp, times(1)).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1543 verify(nsp, never()).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
1552 verify(nsp, times(1)).onStartNestedScroll(eq(mRecyclerView), eq(mRecyclerView),
4649 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, method in class:RecyclerViewLayoutTest.FullyConsumingNestedScroller
H A DTestedFrameLayout.java134 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:TestedFrameLayout
135 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
168 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, method in class:TestedFrameLayout
171 && mNestedScrollingDelegate.onStartNestedScroll(child, target, axes, type);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
H A DNestedScrollingParent2Adapter.java28 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, method in class:NestedScrollingParent2Adapter
53 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:NestedScrollingParent2Adapter
54 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
/frameworks/support/wear/src/android/support/wear/widget/drawer/
H A DWearableDrawerLayout.java881 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:WearableDrawerLayout
/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingParent.java63 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes); method in interface:NestedScrollingParent
69 * {@link #onStartNestedScroll(View, View, int) onStartNestedScroll} returns true. It offers
78 * @see #onStartNestedScroll(View, View, int)
102 * {@link #onStartNestedScroll(View, View, int)}.</p>
H A DNestedScrollingParent2.java64 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes, method in interface:NestedScrollingParent2
71 * {@link #onStartNestedScroll(View, View, int, int) onStartNestedScroll} returns true. It
81 * @see #onStartNestedScroll(View, View, int, int)
107 * {@link #onStartNestedScroll(View, View, int, int)}.</p>
H A DViewParentCompat.java37 public boolean onStartNestedScroll(ViewParent parent, View child, View target, method in class:ViewParentCompat.ViewParentCompatBaseImpl
40 return ((NestedScrollingParent) parent).onStartNestedScroll(child, target,
111 public boolean onStartNestedScroll(ViewParent parent, View child, View target, method in class:ViewParentCompat.ViewParentCompatApi21Impl
114 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
117 + "method onStartNestedScroll", e);
237 * {@link #onStartNestedScroll(ViewParent, View, View, int, int)} using the touch input type.
246 public static boolean onStartNestedScroll(ViewParent parent, View child, View target, method in class:ViewParentCompat
248 return onStartNestedScroll(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
339 public static boolean onStartNestedScroll(ViewParent parent, View child, View target, method in class:ViewParentCompat
343 return ((NestedScrollingParent2) parent).onStartNestedScroll(chil
[all...]
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java152 if (ViewParentCompat.onStartNestedScroll(p, child, mView, axes, type)) {
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java292 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:NestedScrollView
H A DSwipeRefreshLayout.java749 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:SwipeRefreshLayout
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java824 public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child, method in class:AppBarLayout.Behavior
H A DBottomSheetBehavior.java337 public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, method in class:BottomSheetBehavior
H A DCoordinatorLayout.java1707 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:CoordinatorLayout
1708 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
1712 public boolean onStartNestedScroll(View child, View target, int axes, int type) { method in class:CoordinatorLayout
1725 final boolean accepted = viewBehavior.onStartNestedScroll(this, view, child,
2277 * {@link #onStartNestedScroll(CoordinatorLayout, View, View, View, int, int)}. This
2281 public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2307 * @see NestedScrollingParent2#onStartNestedScroll(View, View, int, int)
2309 public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2313 return onStartNestedScroll(coordinatorLayout, child, directTargetChild,
2335 * to accept the nested scroll as part of {@link #onStartNestedScroll}
[all...]
/frameworks/support/design/tests/src/android/support/design/widget/
H A DCoordinatorLayoutTest.java526 // Verify that the Behavior's onStartNestedScroll was called once
527 verify(behavior, times(1)).onStartNestedScroll(
592 // Verify that the Behavior's onStartNestedScroll was not called
593 verify(behavior, never()).onStartNestedScroll(
728 public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, View child, method in class:CoordinatorLayoutTest.NestedScrollingBehavior
/frameworks/base/core/java/android/view/
H A DView.java23451 if (p.onStartNestedScroll(child, this, axes)) {
23458 "method onStartNestedScroll", e);
H A DViewGroup.java7293 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:ViewGroup
H A DViewParent.java523 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); method in interface:ViewParent
529 * {@link #onStartNestedScroll(View, View, int) onStartNestedScroll} returns true. It offers
538 * @see #onStartNestedScroll(View, View, int)
562 * {@link #onStartNestedScroll(View, View, int)}.</p>
H A DViewRootImpl.java7348 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:ViewRootImpl
/frameworks/base/core/java/android/widget/
H A DAbsListView.java4264 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:AbsListView
H A DScrollView.java1697 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:ScrollView
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java521 public boolean onStartNestedScroll(View child, View target, int axes) { method in class:ActionBarOverlayLayout
H A DResolverDrawerLayout.java625 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { method in class:ResolverDrawerLayout

Completed in 559 milliseconds