Searched defs:isViewDescendantOf (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1529 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1580 private static boolean isViewDescendantOf(View child, View parent) { method in class:HorizontalScrollView
1586 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DScrollView.java1555 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1604 private static boolean isViewDescendantOf(View child, View parent) { method in class:ScrollView
1610 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java1736 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1799 private static boolean isViewDescendantOf(View child, View parent) { method in class:NestedScrollView
1805 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3788 && isViewDescendantOf(v, focused)) {
3955 public static boolean isViewDescendantOf(View child, View parent) { method in class:ViewRootImpl
3961 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);

Completed in 620 milliseconds