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

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DBrowseRowsFrameLayout.java50 int parentHeightMeasureSpec, int heightUsed) {
55 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height);
48 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DViewGroupImpl.java130 int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) {
132 parentWidthMeasureSpec, widthUsed, parentHeightMeasureSpec, heightUsed);
129 measureChildWithMargins_impl(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/media/java/android/media/update/
H A DViewGroupProvider.java63 int parentHeightMeasureSpec, int heightUsed);
62 measureChildWithMargins_impl(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DViewGroupHelper.java146 int parentHeightMeasureSpec, int heightUsed) {
148 parentWidthMeasureSpec, widthUsed, parentHeightMeasureSpec, heightUsed);
251 int parentHeightMeasureSpec, int heightUsed) {
253 parentWidthMeasureSpec, widthUsed, parentHeightMeasureSpec, heightUsed);
357 int parentHeightMeasureSpec, int heightUsed) {
359 parentWidthMeasureSpec, widthUsed, parentHeightMeasureSpec, heightUsed);
145 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
249 measureChildWithMargins_impl(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
355 measureChildWithMargins_impl(View 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.java1296 int parentHeightMeasureSpec, int heightUsed) {
1303 heightUsed;
1295 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
H A DToolbar.java1506 int parentHeightSpec, int heightUsed, int heightConstraint) {
1514 + heightUsed, lp.height);
1531 int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) {
1546 + heightUsed, lp.height);
1505 measureChildConstrained(View child, int parentWidthSpec, int widthUsed, int parentHeightSpec, int heightUsed, int heightConstraint) argument
1529 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java1493 int parentHeightMeasureSpec, int heightUsed) {
1492 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DToolbar.java1506 int parentHeightSpec, int heightUsed, int heightConstraint) {
1514 + heightUsed, lp.height);
1531 int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) {
1546 + heightUsed, lp.height);
1505 measureChildConstrained(View child, int parentWidthSpec, int widthUsed, int parentHeightSpec, int heightUsed, int heightConstraint) argument
1529 measureChildCollapseMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed, int[] collapsingMargins) argument
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java728 * @param heightUsed extra space that has been used up by the parent
732 int parentHeightMeasureSpec, int heightUsed) {
734 parentHeightMeasureSpec, heightUsed);
756 int heightUsed = getSuggestedMinimumHeight();
812 heightUsed = Math.max(heightUsed, heightPadding + child.getMeasuredHeight() +
819 final int height = View.resolveSizeAndState(heightUsed, heightMeasureSpec,
2255 * @param heightUsed extra space that has been used up by the parent
2262 int parentHeightMeasureSpec, int heightUsed) {
731 onMeasureChild(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
2260 onMeasureChild(@onNull CoordinatorLayout parent, @NonNull V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java6734 * @param heightUsed Extra space that has been used up by the parent
6739 int parentHeightMeasureSpec, int heightUsed) {
6747 + heightUsed, lp.height);
6737 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java8361 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8365 * @param heightUsed Height in pixels currently consumed by other views, if relevant
8367 public void measureChild(View child, int widthUsed, int heightUsed) { argument
8372 heightUsed += insets.top + insets.bottom;
8377 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height,
8460 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8464 * @param heightUsed Height in pixels currently consumed by other views, if relevant
8466 public void measureChildWithMargins(View child, int widthUsed, int heightUsed) { argument
8471 heightUsed += insets.top + insets.bottom;
8479 + lp.topMargin + lp.bottomMargin + heightUsed, l
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java8952 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
8956 * @param heightUsed Height in pixels currently consumed by other views, if relevant
8958 public void measureChild(@NonNull View child, int widthUsed, int heightUsed) { argument
8963 heightUsed += insets.top + insets.bottom;
8968 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height,
9051 * pass 0 as the widthUsed or heightUsed parameters as they will be irrelevant.</p>
9055 * @param heightUsed Height in pixels currently consumed by other views, if relevant
9057 public void measureChildWithMargins(@NonNull View child, int widthUsed, int heightUsed) { argument
9062 heightUsed += insets.top + insets.bottom;
9070 + lp.topMargin + lp.bottomMargin + heightUsed, l
[all...]

Completed in 168 milliseconds