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

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1514 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1565 private static boolean isViewDescendantOf(View child, View parent) { method in class:HorizontalScrollView
1571 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DScrollView.java1538 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1587 private static boolean isViewDescendantOf(View child, View parent) { method in class:ScrollView
1593 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java1625 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1683 private static boolean isViewDescendantOf(View child, View parent) { method in class:NestedScrollView
1689 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3237 && isViewDescendantOf(v, focused)) {
3349 public static boolean isViewDescendantOf(View child, View parent) { method in class:ViewRootImpl
3355 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);

Completed in 109 milliseconds