Searched refs:mMaxWidths (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | TableLayout.java | 72 private int[] mMaxWidths; field in TableLayout 458 ((TableRow) child).setColumnsWidthConstraints(mMaxWidths); in measureChildBeforeLayout() 509 if (mMaxWidths == null || mMaxWidths.length != newLength) { in findLargestCells() 510 mMaxWidths = new int[newLength]; in findLargestCells() 512 System.arraycopy(widths, 0, mMaxWidths, 0, newLength); in findLargestCells() 515 int length = mMaxWidths.length; in findLargestCells() 520 final int[] oldMaxWidths = mMaxWidths; in findLargestCells() 521 mMaxWidths = new int[newLength]; in findLargestCells() 522 System.arraycopy(oldMaxWidths, 0, mMaxWidths, 0, in findLargestCells() 525 mMaxWidths, oldMaxWidths.length, difference); in findLargestCells() [all …]
|