Searched refs:cols (Results 1 – 4 of 4) sorted by relevance
/art/tools/ahat/src/main/com/android/ahat/ |
D | SizeTable.java | 45 List<Column> cols = new ArrayList<Column>(); in table() local 46 cols.add(left); in table() 47 cols.add(new Column("Java Size", Column.Align.RIGHT)); in table() 48 cols.add(new Column("Δ", Column.Align.RIGHT, showDiff)); in table() 49 cols.add(new Column("Registered Native Size", Column.Align.RIGHT)); in table() 50 cols.add(new Column("Δ", Column.Align.RIGHT, showDiff)); in table() 51 cols.add(new Column("Total Size", Column.Align.RIGHT)); in table() 52 cols.add(new Column("Δ", Column.Align.RIGHT, showDiff)); in table() 53 cols.addAll(Arrays.asList(columns)); in table() 54 doc.table(cols.toArray(new Column[cols.size()])); in table()
|
D | HtmlDoc.java | 102 public void table(DocString description, List<Column> subcols, List<Column> cols) { in table() argument 103 mCurrentTableColumns = new Column[subcols.size() + cols.size()]; in table() 113 for (Column col : cols) { in table() 120 for (int i = 0; i < cols.size() - 1; i++) { in table() 121 if (cols.get(i).visible) { in table() 122 ps.format("<th rowspan=\"2\">%s</th>", cols.get(i).heading.html()); in table() 125 if (!cols.isEmpty()) { in table() 128 Column col = cols.get(cols.size() - 1); in table()
|
D | Doc.java | 71 void table(DocString description, List<Column> subcols, List<Column> cols); in table() argument
|
D | HeapTable.java | 74 List<Column> cols = new ArrayList<Column>(); in render() local 76 cols.add(new Column(value.getDescription())); in render() 78 doc.table(DocString.text(config.getHeapsDescription()), subcols, cols); in render() local
|