Searched defs:widthUsed (Results 1 - 11 of 11) 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
/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.java696 * @param widthUsed extra space that has been used up by the parent
702 public void onMeasureChild(View child, int parentWidthMeasureSpec, int widthUsed, argument
704 measureChildWithMargins(child, parentWidthMeasureSpec, widthUsed,
726 int widthUsed = getSuggestedMinimumWidth();
780 widthUsed = Math.max(widthUsed, widthPadding + child.getMeasuredWidth() +
789 final int width = ViewCompat.resolveSizeAndState(widthUsed, widthMeasureSpec,
2107 * @param widthUsed extra space that has been used up by the parent
2116 int parentWidthMeasureSpec, int widthUsed,
2115 onMeasureChild(CoordinatorLayout parent, V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1274 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, argument
1282 widthUsed;
H A DScrollView.java1293 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, argument
1299 + widthUsed, lp.width);
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
/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/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/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
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java8043 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8046 * @param widthUsed Width in pixels currently consumed by other views, if relevant
8049 public void measureChild(View child, int widthUsed, int heightUsed) { argument
8053 widthUsed += insets.left + insets.right;
8056 getPaddingLeft() + getPaddingRight() + widthUsed, lp.width,
8142 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8145 * @param widthUsed Width in pixels currently consumed by other views, if relevant
8148 public void measureChildWithMargins(View child, int widthUsed, int heightUsed) { argument
8152 widthUsed += insets.left + insets.right;
8157 lp.leftMargin + lp.rightMargin + widthUsed, l
[all...]

Completed in 920 milliseconds