Lines Matching refs:rows
326 let rows = [];
328 rows.push(['Record Time', gRecordInfo.recordTime]);
331 rows.push(['Machine Type', gRecordInfo.machineType]);
334 rows.push(['Android Version', gRecordInfo.androidVersion]);
337 rows.push(['Record cmdline', gRecordInfo.recordCmdline]);
339 rows.push(['Total Samples', '' + gRecordInfo.totalSamples]);
344 data.addRows(rows);
345 for (let i = 0; i < rows.length; ++i) {
435 let rows = [];
436 rows.push(['Event Type: ' + this.eventInfo.eventName,
439 rows.push(['Process: ' + getProcessName(this.processInfo.pid),
443 rows.push(['Thread: ' + getThreadName(this.threadInfo.tid),
447 rows.push(['Library: ' + getLibName(this.libInfo.libId),
453 data.addRows(rows);
454 for (let i = 0; i < rows.length; ++i) {
478 let rows = [];
491 rows.push(getItem('Process: ' + getProcessName(process.pid), process.eventCount,
498 rows.push(getItem('Thread: ' + getThreadName(thread.tid), thread.eventCount,
505 rows.push(getItem('Library: ' + getLibName(lib.libId), lib.eventCount,
512 rows.push(getItem('Function: ' + getFuncName(func.f), func.c[1],
520 data.addRows(rows);
961 let rows = [];
962 rows.push(['Event Type', eventName]);
963 rows.push(['Process', processName]);
964 rows.push(['Thread', threadName]);
965 rows.push(['Library', libName]);
966 rows.push(['Function', getHtml('pre', {text: funcName})]);
970 data.addRows(rows);
971 for (let i = 0; i < rows.length; ++i) {
1559 let rows = [];
1571 rows.push([lineNumber, totalValue, selfValue, code]);
1579 data.addRows(rows);
1580 for (let i = 0; i < rows.length; ++i) {
1661 let rows = [];
1670 rows.push([totalValue, selfValue, code]);
1676 data.addRows(rows);
1677 for (let i = 0; i < rows.length; ++i) {