Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DHorizontalScrollView.java1570 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1571 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DScrollView.java1592 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1593 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
DListView.java3084 final ViewParent theParent = child.getParent();
3085 return (theParent instanceof ViewGroup) && isViewAncestorOf((View) theParent, parent);
/frameworks/support/v4/java/android/support/v4/widget/
DNestedScrollView.java1682 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
1683 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()
/frameworks/base/core/java/android/view/
DViewGroup.java5450 ViewParent theParent = descendant.mParent; in offsetRectBetweenParentAndChild() local
5453 while ((theParent != null) in offsetRectBetweenParentAndChild()
5454 && (theParent instanceof View) in offsetRectBetweenParentAndChild()
5455 && (theParent != this)) { in offsetRectBetweenParentAndChild()
5461 View p = (View) theParent; in offsetRectBetweenParentAndChild()
5470 View p = (View) theParent; in offsetRectBetweenParentAndChild()
5481 descendant = (View) theParent; in offsetRectBetweenParentAndChild()
5482 theParent = descendant.mParent; in offsetRectBetweenParentAndChild()
5487 if (theParent == this) { in offsetRectBetweenParentAndChild()
DViewRootImpl.java3350 final ViewParent theParent = child.getParent(); in isViewDescendantOf() local
3351 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent); in isViewDescendantOf()