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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBrowseRowsFrameLayout.java48 int parentWidthMeasureSpec, int widthUsed,
52 getPaddingLeft() + getPaddingRight() + widthUsed, lp.width);
47 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DGridLayoutManager.java1182 int widthUsed = p.leftMargin + p.rightMargin + sTempRect.left + sTempRect.right;
1186 getPaddingLeft() + getPaddingRight() + widthUsed, p.width);
1409 int widthUsed = lp.leftMargin + lp.rightMargin + sTempRect.left + sTempRect.right;
1419 MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), widthUsed, lp.width);
1424 widthSpec = ViewGroup.getChildMeasureSpec(secondarySpec, widthUsed, lp.width);
/frameworks/support/design/src/android/support/design/widget/
H A DHeaderScrollingViewBehavior.java52 int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec,
91 widthUsed, heightMeasureSpec, heightUsed);
51 onMeasureChild(CoordinatorLayout parent, View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DAppBarLayout.java1019 int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec,
1028 parent.onMeasureChild(child, parentWidthMeasureSpec, widthUsed,
1034 return super.onMeasureChild(parent, child, parentWidthMeasureSpec, widthUsed,
1018 onMeasureChild(CoordinatorLayout parent, AppBarLayout child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DCoordinatorLayout.java695 * @param widthUsed extra space that has been used up by the parent
701 public void onMeasureChild(View child, int parentWidthMeasureSpec, int widthUsed, argument
703 measureChildWithMargins(child, parentWidthMeasureSpec, widthUsed,
725 int widthUsed = getSuggestedMinimumWidth();
774 widthUsed = Math.max(widthUsed, widthPadding + child.getMeasuredWidth() +
783 final int width = ViewCompat.resolveSizeAndState(widthUsed, widthMeasureSpec,
2087 * @param widthUsed extra space that has been used up by the parent
2096 int parentWidthMeasureSpec, int widthUsed,
2095 onMeasureChild(CoordinatorLayout parent, V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/core/java/android/widget/
H A DToolbar.java1484 private void measureChildConstrained(View child, int parentWidthSpec, int widthUsed, argument
1490 + widthUsed, lp.width);
1509 int parentWidthMeasureSpec, int widthUsed,
1522 mPaddingLeft + mPaddingRight + hMargins + widthUsed, lp.width);
1508 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
H A DHorizontalScrollView.java1261 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, argument
1269 widthUsed;
H A DScrollView.java1280 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, argument
1286 + widthUsed, lp.width);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java1506 private void measureChildConstrained(View child, int parentWidthSpec, int widthUsed, argument
1512 + widthUsed, lp.width);
1531 int parentWidthMeasureSpec, int widthUsed,
1544 getPaddingLeft() + getPaddingRight() + hMargins + widthUsed, lp.width);
1530 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java1410 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, argument
1416 + widthUsed, lp.width);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java8040 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8043 * @param widthUsed Width in pixels currently consumed by other views, if relevant
8046 public void measureChild(View child, int widthUsed, int heightUsed) { argument
8050 widthUsed += insets.left + insets.right;
8053 getPaddingLeft() + getPaddingRight() + widthUsed, lp.width,
8139 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8142 * @param widthUsed Width in pixels currently consumed by other views, if relevant
8145 public void measureChildWithMargins(View child, int widthUsed, int heightUsed) { argument
8149 widthUsed += insets.left + insets.right;
8154 lp.leftMargin + lp.rightMargin + widthUsed, l
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java6065 * @param widthUsed Extra space that has been used up by the parent
6072 int parentWidthMeasureSpec, int widthUsed,
6078 + widthUsed, lp.width);
6071 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument

Completed in 1807 milliseconds