Home
last modified time | relevance | path

Searched refs:isViewDescendantOf (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
DScrollView.java1665 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) { in onLayout()
1714 private static boolean isViewDescendantOf(View child, View parent) { in isViewDescendantOf() method in ScrollView
1720 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DHorizontalScrollView.java1627 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) { in onLayout()
1678 private static boolean isViewDescendantOf(View child, View parent) { in isViewDescendantOf() method in HorizontalScrollView
1684 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
/frameworks/base/core/java/android/view/
DAccessibilityInteractionController.java541 if (host == null || !ViewRootImpl.isViewDescendantOf(host, root)) { in findFocusUiThread()
728 if (host == null || !ViewRootImpl.isViewDescendantOf(host, root)) { in clearAccessibilityFocusUiThread()
DViewRootImpl.java4123 && isViewDescendantOf(v, focused)) { in focusableViewAvailable()
4291 public static boolean isViewDescendantOf(View child, View parent) { in isViewDescendantOf() method in ViewRootImpl
4297 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()