Home
last modified time | relevance | path

Searched refs:childWidthSize (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java1381 int childWidthSize = measuredWidth - getPaddingLeft() - getPaddingRight();
1408 int widthSize = childWidthSize;
1429 childWidthSize -= child.getMeasuredWidth();
1435 mChildWidthMeasureSpec = MeasureSpec.makeMeasureSpec(childWidthSize, MeasureSpec.EXACTLY);
1454 (int) (childWidthSize * lp.widthFactor), MeasureSpec.EXACTLY);
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DCellLayout.java946 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight()); in onMeasure() local
950 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mBorderSpace.x, in onMeasure()
962 int newWidth = childWidthSize; in onMeasure()