Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DHorizontalScrollView.java1707 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1708 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DScrollView.java1747 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1748 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.java6250 ViewParent theParent = descendant.mParent; in offsetRectBetweenParentAndChild() local
6253 while ((theParent != null) in offsetRectBetweenParentAndChild()
6254 && (theParent instanceof View) in offsetRectBetweenParentAndChild()
6255 && (theParent != this)) { in offsetRectBetweenParentAndChild()
6261 View p = (View) theParent; in offsetRectBetweenParentAndChild()
6270 View p = (View) theParent; in offsetRectBetweenParentAndChild()
6281 descendant = (View) theParent; in offsetRectBetweenParentAndChild()
6282 theParent = descendant.mParent; in offsetRectBetweenParentAndChild()
6287 if (theParent == this) { in offsetRectBetweenParentAndChild()
DViewRootImpl.java5547 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
5548 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()