Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DHorizontalScrollView.java1683 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1684 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DScrollView.java1719 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1720 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DListView.java3193 final ViewParent theParent = child.getParent();
3194 return (theParent instanceof ViewGroup) && isViewAncestorOf((View) theParent, parent);
/frameworks/base/core/java/android/view/
DViewGroup.java6141 ViewParent theParent = descendant.mParent; in offsetRectBetweenParentAndChild() local
6144 while ((theParent != null) in offsetRectBetweenParentAndChild()
6145 && (theParent instanceof View) in offsetRectBetweenParentAndChild()
6146 && (theParent != this)) { in offsetRectBetweenParentAndChild()
6152 View p = (View) theParent; in offsetRectBetweenParentAndChild()
6161 View p = (View) theParent; in offsetRectBetweenParentAndChild()
6172 descendant = (View) theParent; in offsetRectBetweenParentAndChild()
6173 theParent = descendant.mParent; in offsetRectBetweenParentAndChild()
6178 if (theParent == this) { in offsetRectBetweenParentAndChild()
DViewRootImpl.java4460 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
4461 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()