Searched defs:heightUsed (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBrowseRowsFrameLayout.java49 int parentHeightMeasureSpec, int heightUsed) {
54 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height);
47 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/support/design/src/android/support/design/widget/
H A DHeaderScrollingViewBehavior.java53 int heightUsed) {
91 widthUsed, heightMeasureSpec, heightUsed);
51 onMeasureChild(CoordinatorLayout parent, View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DAppBarLayout.java1020 int heightUsed) {
1029 MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), heightUsed);
1035 parentHeightMeasureSpec, heightUsed);
1018 onMeasureChild(CoordinatorLayout parent, AppBarLayout child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DCoordinatorLayout.java699 * @param heightUsed extra space that has been used up by the parent
703 int parentHeightMeasureSpec, int heightUsed) {
705 parentHeightMeasureSpec, heightUsed);
727 int heightUsed = getSuggestedMinimumHeight();
783 heightUsed = Math.max(heightUsed, heightPadding + child.getMeasuredHeight() +
791 final int height = ViewCompat.resolveSizeAndState(heightUsed, heightMeasureSpec,
2110 * @param heightUsed extra space that has been used up by the parent
2117 int parentHeightMeasureSpec, int heightUsed) {
702 onMeasureChild(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
2115 onMeasureChild(CoordinatorLayout parent, V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1275 int parentHeightMeasureSpec, int heightUsed) {
1280 + heightUsed, lp.height);
1274 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DScrollView.java1294 int parentHeightMeasureSpec, int heightUsed) {
1301 heightUsed;
1293 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DToolbar.java1485 int parentHeightSpec, int heightUsed, int heightConstraint) {
1493 + heightUsed, lp.height);
1510 int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) {
1525 + heightUsed, lp.height);
1484 measureChildConstrained(View child, int parentWidthSpec, int widthUsed, int parentHeightSpec, int heightUsed, int heightConstraint) argument
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.java1411 int parentHeightMeasureSpec, int heightUsed) {
1410 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java1507 int parentHeightSpec, int heightUsed, int heightConstraint) {
1515 + heightUsed, lp.height);
1532 int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) {
1547 + heightUsed, lp.height);
1506 measureChildConstrained(View child, int parentWidthSpec, int widthUsed, int parentHeightSpec, int heightUsed, int heightConstraint) argument
1530 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java6068 * @param heightUsed Extra space that has been used up by the parent
6073 int parentHeightMeasureSpec, int heightUsed) {
6081 + heightUsed, lp.height);
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>
8047 * @param heightUsed Height in pixels currently consumed by other views, if relevant
8049 public void measureChild(View child, int widthUsed, int heightUsed) { argument
8054 heightUsed += insets.top + insets.bottom;
8059 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height,
8142 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8146 * @param heightUsed Height in pixels currently consumed by other views, if relevant
8148 public void measureChildWithMargins(View child, int widthUsed, int heightUsed) { argument
8153 heightUsed += insets.top + insets.bottom;
8161 lp.topMargin + lp.bottomMargin + heightUsed, l
[all...]

Completed in 158 milliseconds