Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/component/chart/
DPerfDataQuery.ts24 filesData: any = {}; property in PerfDataQuery
40 this.filesData[file.fileId] = this.filesData[file.fileId] || [];
42 this.filesData[file.fileId].push(file);
59 if (this.filesData[fileId] && this.filesData[fileId].length > 0) {
60 name = this.filesData[fileId][0].fileName;
63 if (this.filesData[fileId] && this.filesData[fileId].length > symbolId) {
64 name = this.filesData[fileId][symbolId].fileName;
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts24 filesData: any = {}; property in ProcedureLogicWorkerPerf
79 this.filesData[file.fileId] = this.filesData[file.fileId] || [];
81 this.filesData[file.fileId].push(file);
348 this.filesData = {};
378 if (this.filesData[callChain.fileId] && this.filesData[callChain.fileId].length > 0) {
379 callChain.fileName = this.filesData[callChain.fileId][0].fileName;
380 callChain.path = this.filesData[callChain.fileId][0].path;
385 …if (this.filesData[callChain.fileId] && this.filesData[callChain.fileId].length > callChain.symbol…
386 callChain.fileName = this.filesData[callChain.fileId][callChain.symbolId].fileName;
387 callChain.path = this.filesData[callChain.fileId][callChain.symbolId].path;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfSampleList.ts111 let files = (perfDataQuery.filesData[stack.fileId] ?? []) as Array<PerfFile>;