Searched refs:descendant (Results 1 - 12 of 12) sorted by relevance

/frameworks/support/design/src/android/support/design/widget/
H A DViewGroupUtils.java71 * @param descendant view defining the original coordinate system of rect
72 * @param rect (in/out) the rect to offset from descendant to this view's coordinate system
74 static void offsetDescendantRect(ViewGroup parent, View descendant, Rect rect) { argument
75 IMPL.offsetDescendantRect(parent, descendant, rect);
79 * Retrieve the transformed bounding rect of an arbitrary descendant view.
82 * @param descendant descendant view to reference
83 * @param out rect to set to the bounds of the descendant view
85 static void getDescendantRect(ViewGroup parent, View descendant, Rect out) { argument
86 out.set(0, 0, descendant
[all...]
H A DCollapsingToolbarLayout.java378 private View findDirectChild(final View descendant) { argument
379 View directChild = descendant;
380 for (ViewParent p = descendant.getParent(); p != this && p != null; p = p.getParent()) {
H A DCoordinatorLayout.java99 * to an arbitrary descendant of the CoordinatorLayout, but it may not be the anchored child itself
100 * or a descendant of the anchored child. This can be used to place floating views relative to
668 * Retrieve the transformed bounding rect of an arbitrary descendant view.
671 * @param descendant descendant view to reference
672 * @param out rect to set to the bounds of the descendant view
674 void getDescendantRect(View descendant, Rect out) { argument
675 ViewGroupUtils.getDescendantRect(this, descendant, out);
2157 * Called when a descendant of the CoordinatorLayout attempts to initiate a nested scroll.
2169 * @param target the descendant vie
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
H A DButtonsWithTallTextViewInBetweenTest.java54 private int getTopWithinScrollView(View descendant) { argument
55 descendant.getDrawingRect(mTempRect);
56 mScrollView.offsetDescendantRectToMyCoords(descendant, mTempRect);
60 private int getBottomWithinScrollView(View descendant) { argument
61 descendant.getDrawingRect(mTempRect);
62 mScrollView.offsetDescendantRectToMyCoords(descendant, mTempRect);
/frameworks/base/core/java/android/view/
H A DViewGroup.java672 * Gets the descendant focusability of this view group. The descendant
690 * Set the descendant focusability of this view group. This defines the relationship
1118 * If this option is enabled and the ViewGroup or a descendant currently has focus, focus
2150 // normal event dispatch. Maybe a descendant is what will handle the click.
2838 throw new IllegalStateException("descendant focusability must be "
2845 * Look for a descendant to call {@link View#requestFocus} on.
5382 * Offset a rectangle that is in a descendant's coordinate
5384 * @param descendant A descendant o
5387 offsetDescendantRectToMyCoords(View descendant, Rect rect) argument
5397 offsetRectIntoDescendantCoords(View descendant, Rect rect) argument
5405 offsetRectBetweenParentAndChild(View descendant, Rect rect, boolean offsetFromChildToParent, boolean clipToBounds) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1142 * @return whether the descendant of this scroll view is scrolled off
1145 private boolean isOffScreen(View descendant) { argument
1146 return !isWithinDeltaOfScreen(descendant, 0);
1150 * @return whether the descendant of this scroll view is within delta
1153 private boolean isWithinDeltaOfScreen(View descendant, int delta) { argument
1154 descendant.getDrawingRect(mTempRect);
1155 offsetDescendantRectToMyCoords(descendant, mTempRect);
1563 * Return true if child is a descendant of parent, (or equal to the parent).
H A DScrollView.java1154 * @return whether the descendant of this scroll view is scrolled off
1157 private boolean isOffScreen(View descendant) { argument
1158 return !isWithinDeltaOfScreen(descendant, 0, getHeight());
1162 * @return whether the descendant of this scroll view is within delta
1165 private boolean isWithinDeltaOfScreen(View descendant, int delta, int height) { argument
1166 descendant.getDrawingRect(mTempRect);
1167 offsetDescendantRectToMyCoords(descendant, mTempRect);
1585 * Return true if child is a descendant of parent, (or equal to the parent).
H A DListView.java3133 * @param descendant A descendant of this list.
3136 private int distanceToView(View descendant) { argument
3138 descendant.getDrawingRect(mTempRect);
3139 offsetDescendantRectToMyCoords(descendant, mTempRect);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java1258 * @return whether the descendant of this scroll view is scrolled off
1261 private boolean isOffScreen(View descendant) { argument
1262 return !isWithinDeltaOfScreen(descendant, 0, getHeight());
1266 * @return whether the descendant of this scroll view is within delta
1269 private boolean isWithinDeltaOfScreen(View descendant, int delta, int height) { argument
1270 descendant.getDrawingRect(mTempRect);
1271 offsetDescendantRectToMyCoords(descendant, mTempRect);
1681 * Return true if child is a descendant of parent, (or equal to the parent).
/frameworks/base/docs/html/topic/performance/
H A Dperformance_toc.cs1243 <li><a href="<?cs var:toroot ?>training/design-navigation/descendant-lateral.html">
1283 <li><a href="<?cs var:toroot ?>training/implementing-navigation/descendant.html">
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs1199 <li><a href="<?cs var:toroot ?>training/design-navigation/descendant-lateral.html">
1239 <li><a href="<?cs var:toroot ?>training/implementing-navigation/descendant.html">
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 370 milliseconds