Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DScrollView.java1444 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1445 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DHorizontalScrollView.java1415 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1416 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DListView.java2821 final ViewParent theParent = child.getParent();
2822 return (theParent instanceof ViewGroup) && isViewAncestorOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
DViewGroup.java4122 ViewParent theParent = descendant.mParent; in offsetRectBetweenParentAndChild() local
4125 while ((theParent != null) in offsetRectBetweenParentAndChild()
4126 && (theParent instanceof View) in offsetRectBetweenParentAndChild()
4127 && (theParent != this)) { in offsetRectBetweenParentAndChild()
4133 View p = (View) theParent; in offsetRectBetweenParentAndChild()
4138 View p = (View) theParent; in offsetRectBetweenParentAndChild()
4145 descendant = (View) theParent; in offsetRectBetweenParentAndChild()
4146 theParent = descendant.mParent; in offsetRectBetweenParentAndChild()
4151 if (theParent == this) { in offsetRectBetweenParentAndChild()
DViewRootImpl.java2300 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
2301 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()