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

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1499 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1550 private static boolean isViewDescendantOf(View child, View parent) { method in class:HorizontalScrollView
1556 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DScrollView.java1528 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1577 private static boolean isViewDescendantOf(View child, View parent) { method in class:ScrollView
1583 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java1540 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) {
1595 private static boolean isViewDescendantOf(View child, View parent) { method in class:NestedScrollView
1601 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java456 if (host == null || !ViewRootImpl.isViewDescendantOf(host, root)) {
H A DViewRootImpl.java3046 && isViewDescendantOf(v, focused)) {
3153 public static boolean isViewDescendantOf(View child, View parent) { method in class:ViewRootImpl
3159 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
H A DView.java8339 if (focusHost != null && ViewRootImpl.isViewDescendantOf(focusHost, this)) {

Completed in 128 milliseconds