Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/database/data-trafic/hiperf/
DHiperfCallChartReceiver.ts278 let combineSample: any = [];
294 if (combineSample.length === 0) {
295 combineSample.push(sample);
297 let pre = combineSample[combineSample.length - 1];
300 combinePerfCallData(combineSample[combineSample.length - 1], sample);
302 combineSample.push(sample);
306 combinePerfCallData(combineSample[combineSample.length - 1], sample);
308 combineSample.push(sample);
314 return combineSample;
/developtools/smartperf_host/ide/src/trace/database/data-trafic/
DArkTsReceiver.ts138 const combineSample = new Array<JsCpuProfilerChartFrame>(); constant
151 if (combineSample.length === 0) {
153 createNewChartFrame(sample, combineSample);
155 const lastCallChart = combineSample[combineSample.length - 1]; constant
160 createNewChartFrame(sample, combineSample);
165 return combineSample;
189 function createNewChartFrame(sample: JsCpuProfilerSample, combineSample: Array<JsCpuProfilerChartFr…
194 combineSample.push(lastSymbol);
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerJsCpuProfiler.ts218 combineSample: Array<JsCpuProfilerChartFrame> | null,
223 const chartArray = combineSample || parent?.chartFrameChildren;
258 if (combineSample) {