Lines Matching refs:parentRow
391 let parentRow = this.rowsEL!.querySelector<TraceRow<any>>( variable
394 if (parentRow) {
395 parentRow.expansion = true;
396 …if (this.rowsEL!.querySelector<TraceRow<any>>(`trace-row[row-id='${parentRow.rowParentId}'][folder…
397 this.expansionAllParentRow(parentRow);
1677 parentRows.forEach((parentRow: TraceRow<any>) => {
1678 allTraceRow.push(parentRow);
1679 if (parentRow.childrenList && parentRow.childrenList.length > 0) {
1680 allTraceRow.push(...parentRow.childrenList);
1734 …let parentRow = this.rowsEL!.querySelector<TraceRow<any>>(`trace-row[row-id='${funcStract.pid}'][f… variable
1735 if (!parentRow) {
1738 …let filterRow = parentRow.childrenList.filter((child) => child.rowId == funcRowID && child.rowType…