Searched defs:totalWidth (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DTabWidget.java153 int widthMeasureSpec, int totalWidth,
157 totalWidth + mImposedTabWidths[childIndex], MeasureSpec.EXACTLY);
163 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
152 measureChildBeforeLayout(View child, int childIndex, int widthMeasureSpec, int totalWidth, int heightMeasureSpec, int totalHeight) argument
H A DTableRow.java192 int widthMeasureSpec, int totalWidth,
248 totalWidth, heightMeasureSpec, totalHeight);
191 measureChildBeforeLayout(View child, int childIndex, int widthMeasureSpec, int totalWidth, int heightMeasureSpec, int totalHeight) argument
H A DTableLayout.java456 int widthMeasureSpec, int totalWidth,
465 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
562 int totalWidth = 0;
564 totalWidth += width;
569 if ((totalWidth > size) && (mShrinkAllColumns || mShrinkableColumns.size() > 0)) {
572 mutateColumnsWidth(mShrinkableColumns, mShrinkAllColumns, size, totalWidth);
573 } else if ((totalWidth < size) && (mStretchAllColumns || mStretchableColumns.size() > 0)) {
576 mutateColumnsWidth(mStretchableColumns, mStretchAllColumns, size, totalWidth);
581 boolean allColumns, int size, int totalWidth) {
586 final int totalExtraSpace = size - totalWidth;
455 measureChildBeforeLayout(View child, int childIndex, int widthMeasureSpec, int totalWidth, int heightMeasureSpec, int totalHeight) argument
580 mutateColumnsWidth(SparseBooleanArray columns, boolean allColumns, int size, int totalWidth) argument
[all...]
H A DLinearLayout.java1397 * @param totalWidth extra space that has been used up by the parent horizontally
1402 int widthMeasureSpec, int totalWidth, int heightMeasureSpec,
1404 measureChildWithMargins(child, widthMeasureSpec, totalWidth,
1401 measureChildBeforeLayout(View child, int childIndex, int widthMeasureSpec, int totalWidth, int heightMeasureSpec, int totalHeight) argument

Completed in 129 milliseconds