Searched defs:childSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java725 * @param childSize The child's desired size (the width or height field of
735 int childSize, int startMargin, int endMargin, int startPadding,
749 } else if (childSize >= 0) {
751 childSpecSize = childSize;
783 if (childSize >= 0) {
789 childSpecSize = Math.min(maxAvailable, childSize);
792 childSpecSize = childSize;
794 } else if (childSize == LayoutParams.MATCH_PARENT) {
799 } else if (childSize == LayoutParams.WRAP_CONTENT) {
734 getChildMeasureSpec(int childStart, int childEnd, int childSize, int startMargin, int endMargin, int startPadding, int endPadding, int mySize) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java8437 private static boolean isMeasurementUpToDate(int childSize, int spec, int dimension) { argument
8440 if (dimension > 0 && childSize != dimension) {
8447 return specSize >= childSize;
8449 return specSize == childSize;
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java9028 private static boolean isMeasurementUpToDate(int childSize, int spec, int dimension) { argument
9031 if (dimension > 0 && childSize != dimension) {
9038 return specSize >= childSize;
9040 return specSize == childSize;

Completed in 80 milliseconds