Home
last modified time | relevance | path

Searched refs:childMeasuredWidth (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/
H A DLineWrapLayout.java71 int childMeasuredWidth = currChild.getMeasuredWidth() + startMargin + endMargin; in onMeasure() local
75 if ((x + childMeasuredWidth) > widthSize) { in onMeasure()
84 x += childMeasuredWidth; in onMeasure()
85 currLineWidth += childMeasuredWidth; in onMeasure()
/aosp12/frameworks/base/core/java/android/widget/
H A DStackView.java1158 final int childMeasuredWidth = child.getMeasuredWidth();
1160 if (childMeasuredWidth > maxWidth) {
1161 maxWidth = childMeasuredWidth;
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java1598 final int childMeasuredWidth = child.getMeasuredWidth();
1602 childLeft = MAX_SCROLL_X - paddingRight - startOffset - childMeasuredWidth;
1608 child.layout(childLeft, childTop, childLeft + childMeasuredWidth,