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