Searched refs:isViewDescendantOf (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 1665 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()
|
D | HorizontalScrollView.java | 1627 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/ |
D | AccessibilityInteractionController.java | 541 if (host == null || !ViewRootImpl.isViewDescendantOf(host, root)) { in findFocusUiThread() 728 if (host == null || !ViewRootImpl.isViewDescendantOf(host, root)) { in clearAccessibilityFocusUiThread()
|
D | ViewRootImpl.java | 4123 && 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()
|