Searched refs:childrenBounds (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DGridLayoutManager.java285 public void setMeasuredDimension(Rect childrenBounds, int wSpec, int hSpec) { argument
287 super.setMeasuredDimension(childrenBounds, wSpec, hSpec);
293 final int usedHeight = childrenBounds.height() + verticalPadding;
298 final int usedWidth = childrenBounds.width() + horizontalPadding;
H A DStaggeredGridLayoutManager.java584 public void setMeasuredDimension(Rect childrenBounds, int wSpec, int hSpec) { argument
590 final int usedHeight = childrenBounds.height() + verticalPadding;
595 final int usedWidth = childrenBounds.width() + horizontalPadding;
H A DRecyclerView.java7516 * @param childrenBounds The bounding box of all children
7523 public void setMeasuredDimension(Rect childrenBounds, int wSpec, int hSpec) { argument
7524 int usedWidth = childrenBounds.width() + getPaddingLeft() + getPaddingRight();
7525 int usedHeight = childrenBounds.height() + getPaddingTop() + getPaddingBottom();
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java6967 * @param childrenBounds The bounding box of all children
6973 public void setMeasuredDimension(Rect childrenBounds, int wSpec, int hSpec) { argument
6974 int usedWidth = childrenBounds.width() + getPaddingLeft() + getPaddingRight();
6975 int usedHeight = childrenBounds.height() + getPaddingTop() + getPaddingBottom();

Completed in 115 milliseconds