Home | History | Annotate | Download | only in analysis

Lines Matching full:row

53     appendTableCell_: function(table, row, cellnum, text) {
54 var td = this.appendElement_(row, 'td', text);
59 appendTableCell: function(table, row, text) {
60 return this.appendTableCell_(table, row, row.children.length, text);
63 appendTableCellWithTooltip_: function(table, row, cellnum, text, tooltip) {
65 var td = this.appendElement_(row, 'td');
72 this.appendTableCell_(table, row, cellnum, text);
89 * Creates and appends a row to |table| with a left-aligned |label]
102 * Creates and appends a row to |table| with a left-aligned |label]
107 var row = this.appendElement_(table, 'tr');
108 row.className = 'analysis-table-row';
110 this.appendTableCell_(table, row, 0, label);
117 row.appendChild(objectView);
119 this.appendTableCell_(table, row, 1, '');
122 this.appendTableCell_(table, row, i, '');
126 * Adds a spacing row to spread out results.
129 var row = this.appendElement_(table, 'tr');
130 row.className = 'analysis-table-row';
132 this.appendTableCell_(table, row, i, ' ');
136 * Creates and appends a row to |table| with a left-aligned |label]
146 * Creates and appends a row to |table| that summarizes one or more slices,
148 * The row has a left-aligned |label| in the first column, the |duration|
185 var row = this.appendElement_(table, 'tr');
186 row.className = 'analysis-table-row';
189 this.appendTableCellWithTooltip_(table, row, 0, label, tooltip);
192 table, row, 0, label, tooltip);
201 this.appendTableCellWithTooltip_(table, row, 1,
204 this.appendTableCellWithTooltip_(table, row, 1,
208 this.appendTableCell_(table, row, 1, '');
212 this.appendTableCellWithTooltip_(table, row, 2,
216 this.appendTableCell_(table, row, 2, '');