Home
last modified time | relevance | path

Searched refs:colName (Results 1 – 1 of 1) sorted by relevance

/development/tools/winscope/src/trace_processor/
Dquery_result.ts433 let colName = origColName;
440 for (let i = 1; columnNamesSet.has(colName); ++i) {
441 colName = `${origColName}_${i}`;
444 columnNamesSet.add(colName);
445 this.columnNames.push(colName);
733 const colName = this.columnNames[i]; constant
734 const expType = this.rowSpec[colName]; constant
738 rowData[colName] = null;
748 rowData[colName] = val as {} as number;
753 rowData[colName] = value;
[all …]