Home
last modified time | relevance | path

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

/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/snapshot/
DTabPaneSummary.ts238 list.forEach((currentRow: ConstructorItem) => {
239 let shallow = Math.round((currentRow.shallowSize / this.fileSize) * 100) + '%';
240 let retained = Math.round((currentRow.retainedSize / this.fileSize) * 100) + '%';
241 currentRow.shallowPercent = shallow;
242 currentRow.retainedPercent = retained;
243 let nodeId = currentRow.nodeName + ` @${currentRow.id}`;
244 currentRow.objectName = currentRow.edgeName + '\xa0' + 'in' + '\xa0' + nodeId;
245 if (currentRow.distance >= 100000000 || currentRow.distance === -5) {
247 currentRow.distance = '-';
254 if (currentRow.hasNext) {
[all …]
DTabPaneComparison.ts404 currentList.forEach(function (currentRow) {
405 if (currentRow.children.length > 0) {
406 getList(currentRow.children);
482 listArr.forEach(function (currentRow) {
483 if (currentRow.children.length > 0) {
484 getList(currentRow.children);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/
DTabPaneSummary.ts240 list.forEach((currentRow: ConstructorItem) => {
241 let shallow = Math.round((currentRow.shallowSize / this.fileSize) * 100) + '%';
242 let retained = Math.round((currentRow.retainedSize / this.fileSize) * 100) + '%';
243 currentRow.shallowPercent = shallow;
244 currentRow.retainedPercent = retained;
245 let nodeId = currentRow.nodeName + ` @${currentRow.id}`;
246 currentRow.objectName = currentRow.edgeName + '\xa0' + 'in' + '\xa0' + nodeId;
247 if (currentRow.distance >= 100000000 || currentRow.distance === -5) {
249 currentRow.distance = '-';
256 if (currentRow.hasNext) {
[all …]
DTabPaneComparison.ts404 currentList.forEach(function (currentRow) {
405 if (currentRow.children.length > 0) {
406 getList(currentRow.children);
482 listArr.forEach(function (currentRow) {
483 if (currentRow.children.length > 0) {
484 getList(currentRow.children);
/developtools/profiler/host/smartperf/ide/src/trace/component/
DSpSystemTrace.ts280 let currentRow = event.detail.row; variable
281 if (currentRow.collect) {
284 return find === currentRow;
287 this.collectRows.push(currentRow);
290 currentRow.collect = false;
295 replaceRow.setAttribute('row-id', currentRow.rowId + '-' + currentRow.rowType);
297 replaceRow.setAttribute('row-parent-id', currentRow.rowParentId);
299 currentRow.rowHidden = !currentRow.hasAttribute('scene');
301 let rowParentId = currentRow.rowParentId;
307 parentRow?.name != currentRow.name &&
[all …]
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.ts147 currentRow: TraceRow<any> | undefined | null; property in SpSystemTrace
369 let currentRow = event.detail.row; variable
370 if (currentRow.collect) {
373 return find === currentRow;
376 this.collectRows.push(currentRow);
379 currentRow.collect = false;
384 replaceRow.setAttribute('row-id', currentRow.rowId + '-' + currentRow.rowType);
386 replaceRow.setAttribute('row-parent-id', currentRow.rowParentId);
388 currentRow.rowHidden = !currentRow.hasAttribute('scene');
390 let rowParentId = currentRow.rowParentId;
[all …]