Searched defs:hasNestedScrollingParent (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild2.java104 boolean hasNestedScrollingParent(@NestedScrollType int type); method in interface:NestedScrollingChild2
H A DNestedScrollingChild.java129 boolean hasNestedScrollingParent(); method in interface:NestedScrollingChild
H A DViewCompat.java842 public boolean hasNestedScrollingParent(View view) { method in class:ViewCompat.ViewCompatBaseImpl
844 return ((NestedScrollingChild) view).hasNestedScrollingParent();
1312 public boolean hasNestedScrollingParent(View view) { method in class:ViewCompat.ViewCompatApi21Impl
1313 return view.hasNestedScrollingParent();
3295 * <p>This version of the method just calls {@link #hasNestedScrollingParent(View, int)}
3300 public static boolean hasNestedScrollingParent(@NonNull View view) { method in class:ViewCompat
3301 return IMPL.hasNestedScrollingParent(view);
3423 public static boolean hasNestedScrollingParent(@NonNull View view, @NestedScrollType int type) { method in class:ViewCompat
3425 ((NestedScrollingChild2) view).hasNestedScrollingParent(type);
3427 return IMPL.hasNestedScrollingParent(vie
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java126 boolean hasNestedScrollingParent(); method in interface:NestedScrollingChild
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java98 public boolean hasNestedScrollingParent() { method in class:NestedScrollingChildHelper
99 return hasNestedScrollingParent(TYPE_TOUCH);
112 public boolean hasNestedScrollingParent(@NestedScrollType int type) { method in class:NestedScrollingChildHelper
144 if (hasNestedScrollingParent(type)) {
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java245 public boolean hasNestedScrollingParent() { method in class:NestedScrollView
246 return mChildHelper.hasNestedScrollingParent();
250 public boolean hasNestedScrollingParent(int type) { method in class:NestedScrollView
251 return mChildHelper.hasNestedScrollingParent(type);
828 0, true) && !hasNestedScrollingParent(ViewCompat.TYPE_TOUCH)) {
1021 if (clampedY && !hasNestedScrollingParent(ViewCompat.TYPE_NON_TOUCH)) {
1492 if (hasNestedScrollingParent(ViewCompat.TYPE_NON_TOUCH)) {
H A DSwipeRefreshLayout.java857 public boolean hasNestedScrollingParent() { method in class:SwipeRefreshLayout
858 return mNestedScrollingChildHelper.hasNestedScrollingParent();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java4932 && !hasNestedScrollingParent(TYPE_NON_TOUCH))) {
10931 public boolean hasNestedScrollingParent() { method in class:RecyclerView
10932 return getScrollingChildHelper().hasNestedScrollingParent();
10936 public boolean hasNestedScrollingParent(int type) { method in class:RecyclerView
10937 return getScrollingChildHelper().hasNestedScrollingParent(type);
/frameworks/base/core/java/android/view/
H A DView.java23442 if (hasNestedScrollingParent()) {
23492 public boolean hasNestedScrollingParent() { method in class:View

Completed in 349 milliseconds