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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBrowseRowsFrameLayout.java45 int parentHeightMeasureSpec, int heightUsed) {
50 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height);
43 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1250 int parentHeightMeasureSpec, int heightUsed) {
1255 + heightUsed, lp.height);
1249 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DScrollView.java1274 int parentHeightMeasureSpec, int heightUsed) {
1273 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DToolbar.java1171 int parentHeightSpec, int heightUsed, int heightConstraint) {
1179 + heightUsed, lp.height);
1196 int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) {
1211 + heightUsed, lp.height);
1170 measureChildConstrained(View child, int parentWidthSpec, int widthUsed, int parentHeightSpec, int heightUsed, int heightConstraint) argument
1194 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java1204 int parentHeightMeasureSpec, int heightUsed) {
1239 widthUsed, heightMeasureSpec, heightUsed);
1202 onMeasureChild(CoordinatorLayout parent, View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DCoordinatorLayout.java602 * @param heightUsed extra space that has been used up by the parent
606 int parentHeightMeasureSpec, int heightUsed) {
608 parentHeightMeasureSpec, heightUsed);
630 int heightUsed = getSuggestedMinimumHeight();
681 heightUsed = Math.max(heightUsed, heightPadding + child.getMeasuredHeight() +
689 final int height = ViewCompat.resolveSizeAndState(heightUsed, heightMeasureSpec,
1829 * @param heightUsed extra space that has been used up by the parent
1836 int parentHeightMeasureSpec, int heightUsed) {
605 onMeasureChild(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
1834 onMeasureChild(CoordinatorLayout parent, V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java1326 int parentHeightMeasureSpec, int heightUsed) {
1325 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java1183 int parentHeightSpec, int heightUsed, int heightConstraint) {
1191 + heightUsed, lp.height);
1208 int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) {
1223 + heightUsed, lp.height);
1182 measureChildConstrained(View child, int parentWidthSpec, int widthUsed, int parentHeightSpec, int heightUsed, int heightConstraint) argument
1206 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java5936 * @param heightUsed Extra space that has been used up by the parent
5941 int parentHeightMeasureSpec, int heightUsed) {
5949 + heightUsed, lp.height);
5939 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java6885 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
6889 * @param heightUsed Height in pixels currently consumed by other views, if relevant
6891 public void measureChild(View child, int widthUsed, int heightUsed) { argument
6896 heightUsed += insets.top + insets.bottom;
6902 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height,
6913 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
6917 * @param heightUsed Height in pixels currently consumed by other views, if relevant
6919 public void measureChildWithMargins(View child, int widthUsed, int heightUsed) { argument
6924 heightUsed += insets.top + insets.bottom;
6932 lp.topMargin + lp.bottomMargin + heightUsed, l
[all...]

Completed in 331 milliseconds