Searched refs:columns (Results 1 - 2 of 2) sorted by relevance

/art/tools/ahat/src/
H A DHtmlDoc.java81 public void table(Column... columns) { argument
82 if (columns.length == 0) {
83 throw new IllegalArgumentException("No columns specified");
86 mCurrentTableColumns = columns;
88 for (int i = 0; i < columns.length - 1; i++) {
89 ps.format("<th>%s</th>", columns[i].heading.html());
94 ps.format("<th align=\"left\">%s</th>", columns[columns.length - 1].heading.html());
H A DDoc.java51 * Start a table with the given columns.
53 * An IllegalArgumentException is thrown if no columns are provided.
58 void table(Column... columns); argument
75 * The number of values must match the number of columns provided for the

Completed in 105 milliseconds