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

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1486 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1539 private static boolean isViewDescendantOf(View child, View parent) { method in class:HorizontalScrollView
1545 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DScrollView.java1505 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1554 private static boolean isViewDescendantOf(View child, View parent) { method in class:ScrollView
1560 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2956 && isViewDescendantOf(v, focused)) {
3063 public static boolean isViewDescendantOf(View child, View parent) { method in class:ViewRootImpl
3069 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);

Completed in 2807 milliseconds