Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/test/js-heap/
DHeapDataInterface.test.ts69 nodeId: 1523400,
80 nodeId: 233330,
99 nodeId: 13331,
110 nodeId: 42321,
/developtools/smartperf_host/ide/src/js-heap/model/
DDatabaseStruct.ts163 nodeId: number; property in HeapEdge
173 nodeId: number,
181 this.nodeId = nodeId;
DUiStruct.ts153 nodeId: number,
168 this.id = nodeId;
/developtools/smartperf_host/ide/test/js-heap/logic/
DAllocation.test.ts121 nodeId: 425,
132 nodeId: 9800,
272 nodeId: 67,
283 nodeId: 67,
DHeapLoader.test.ts92 nodeId: 15436,
103 nodeId: 76,
133 nodeId: 1436,
144 nodeId: 344,
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/
DTabPaneSummary.ts466 let nodeId = `${currentRow.nodeName} @${currentRow.id}`;
467 currentRow.objectName = `${currentRow.edgeName}\xa0` + 'in' + `\xa0${nodeId}`;
521 let nodeId = `${summaryDataEl.nodeName} @${summaryDataEl.id}`;
522 summaryDataEl.nodeId = ` @${summaryDataEl.id}`;
526 summaryDataEl.objectName = nodeId;
529 summaryDataEl.objectName = `${summaryDataEl.edgeName}\xa0` + '::' + `\xa0${nodeId}`;
594 let nodeId = `${summaryRow.nodeName} @${summaryRow.id}`;
595 summaryRow.objectName = `${summaryRow.edgeName}\xa0` + 'in' + `\xa0${nodeId}`;
636 let nodeId = `${element.nodeName} @${element.id}`;
637 element.objectName = `${element.edgeName}\xa0` + 'in' + `\xa0${nodeId}`;
DTabPaneComparison.ts389 let nodeId = `${item.nodeName} @${item.id}`;
390 item.objectName = `${item.edgeName}\xa0` + 'in' + `\xa0${nodeId}`;
440 let nodeId = `${comparisonRetainEl.nodeName} @${comparisonRetainEl.id}`;
441 comparisonRetainEl.objectName = `${comparisonRetainEl.edgeName}\xa0` + 'in' + `\xa0${nodeId}`;
483 let nodeId = `${row.nodeName} @${row.id}`;
484 row.objectName = `${row.edgeName}\xa0` + 'in' + `\xa0${nodeId}`;
529 item.nodeId = ` @${item.id}`;
/developtools/smartperf_host/ide/src/js-heap/logic/
DHeapLoader.ts194 let nodeId = domState.attached.pop() as number; variable
195 let node = this.nodeMap.get(nodeId);
203 let nodeId = domState.detached.pop() as number; variable
204 let node = this.nodeMap.get(nodeId);
542 private binarySearchNodeInSamples(nodeId: number, samples: Array<HeapSample>): number {
549 if (currentSample.lastAssignedId === nodeId) {
551 } else if (currentSample.lastAssignedId < nodeId) {
582 let nodeId = nodesToVisit[index++];
583 let node = this.nodeMap.get(nodeId);
715 private isEssentialEdge(edge: HeapEdge, nodeId: number): boolean {
[all …]
/developtools/profiler/host/smartperf/client/client_command/
Dprofiler_fps.cpp453 uint64_t nodeId; in GetGameLayer() local
457 ss >> nodeId; in GetGameLayer()
461 nodeId = nodeId >> kShiftAmount; in GetGameLayer()
462 LOGI("ProfilerFPS::nodeId: (%d)", nodeId); in GetGameLayer()
463 if (std::to_string(nodeId) == processId) { in GetGameLayer()
/developtools/smartperf_host/ide/src/base-ui/table/
Dlit-table.ts2077 nodeIdText.textContent = rowData.data.nodeId; // @ts-ignore