Lines Matching refs:folderRow
38 private folderRow: TraceRow<any> | undefined; property in SpFreqChart
52 this.folderRow = TraceRow.skeleton();
53 this.folderRow.rowId = 'Cpu Frequency';
54 this.folderRow.rowParentId = '';
55 this.folderRow.rowType = TraceRow.ROW_TYPE_CPU_FREQ_ALL;
56 this.folderRow.style.height = '40px';
57 this.folderRow.style.width = '100%';
58 this.folderRow.name = 'Cpu Frequency';
59 this.folderRow.folder = true;
60 this.folderRow.rowHidden = this.folderRow!.expansion;
61 this.folderRow.setAttribute('children', '');
62 this.folderRow.supplier = FolderSupplier();
63 this.folderRow.onThreadHandler = FolderThreadHandler(this.folderRow, this.trace);
64 this.trace.rowsEL?.appendChild(this.folderRow);
115 this.folderRow!.addChildTraceRow(traceRow);