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

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1441 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1471 private static boolean isViewDescendantOf(View child, View parent) { method in class:HorizontalScrollView
1477 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DScrollView.java1441 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1472 private static boolean isViewDescendantOf(View child, View parent) { method in class:ScrollView
1478 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2587 if (descendantsHaveDibsOnFocus && isViewDescendantOf(v, mFocusedView)) {
2684 public static boolean isViewDescendantOf(View child, View parent) { method in class:ViewRootImpl
2690 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);

Completed in 289 milliseconds