Home
last modified time | relevance | path

Searched refs:theParent (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/widget/
DHorizontalScrollView.java1585 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1586 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DScrollView.java1609 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1610 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DListView.java3175 final ViewParent theParent = child.getParent();
3176 return (theParent instanceof ViewGroup) && isViewAncestorOf((View) theParent, parent);
/frameworks/support/core-ui/java/android/support/v4/widget/
DNestedScrollView.java1736 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1737 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
/frameworks/base/core/java/android/view/
DViewGroup.java5913 ViewParent theParent = descendant.mParent; in offsetRectBetweenParentAndChild() local
5916 while ((theParent != null) in offsetRectBetweenParentAndChild()
5917 && (theParent instanceof View) in offsetRectBetweenParentAndChild()
5918 && (theParent != this)) { in offsetRectBetweenParentAndChild()
5924 View p = (View) theParent; in offsetRectBetweenParentAndChild()
5933 View p = (View) theParent; in offsetRectBetweenParentAndChild()
5944 descendant = (View) theParent; in offsetRectBetweenParentAndChild()
5945 theParent = descendant.mParent; in offsetRectBetweenParentAndChild()
5950 if (theParent == this) { in offsetRectBetweenParentAndChild()
DViewRootImpl.java3623 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
3624 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()