Searched refs:isViewDescendantOf (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1300 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1330 private boolean isViewDescendantOf(View child, View parent) { method in class:HorizontalScrollView
1336 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DScrollView.java1299 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1330 private boolean isViewDescendantOf(View child, View parent) { method in class:ScrollView
1336 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
H A DViewRoot.java1725 if (descendantsHaveDibsOnFocus && isViewDescendantOf(v, mFocusedView)) {
1807 private static boolean isViewDescendantOf(View child, View parent) { method in class:ViewRoot
1813 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);

Completed in 59 milliseconds