Home
last modified time | relevance | path

Searched refs:JsCpuProfilerChartFrame (Results 1 – 13 of 13) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerJsCpuProfiler.ts15 import { JsCpuProfilerChartFrame, JsCpuProfilerTabStruct } from '../../bean/JsStruct';
26 private chartData: Array<JsCpuProfilerChartFrame> = [];
99 chartData: Array<JsCpuProfilerChartFrame>,
137 chartData: Array<JsCpuProfilerChartFrame>,
138 lastLayerData: Array<JsCpuProfilerChartFrame>,
218 combineSample: Array<JsCpuProfilerChartFrame> | null,
270 private copyParent(frame: JsCpuProfilerChartFrame, chartFrame: JsCpuProfilerChartFrame): void {
287 …private combineBottomUpData(chartTreeArray: Array<JsCpuProfilerChartFrame>): Array<JsCpuProfilerTa…
288 const reverseTreeArray = new Array<JsCpuProfilerChartFrame>();
301 chartTreeArray: Array<JsCpuProfilerChartFrame>,
[all …]
/developtools/smartperf_host/ide/src/trace/bean/
DJsStruct.ts53 export class JsCpuProfilerChartFrame extends JsCpuProfilerUIStruct { class
58 children: Array<JsCpuProfilerChartFrame>;
62 parent?: JsCpuProfilerChartFrame;
81 this.children = new Array<JsCpuProfilerChartFrame>();
91 chartFrameChildren?: Array<JsCpuProfilerChartFrame>;
114 this.chartFrameChildren = new Array<JsCpuProfilerChartFrame>();
DBoxSelection.ts23 import { JsCpuProfilerChartFrame } from './JsStruct';
106 jsCpuProfilerData: Array<JsCpuProfilerChartFrame> = [];
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/
DTabPaneJsCpuBottomUp.ts18 import { type JsCpuProfilerChartFrame } from '../../../../bean/JsStruct'; alias
23 set data(data: SelectionParam | Array<JsCpuProfilerChartFrame>) {
DTabPaneJsCpuCallTree.ts18 import { type JsCpuProfilerChartFrame } from '../../../../bean/JsStruct'; alias
23 set data(data: SelectionParam | Array<JsCpuProfilerChartFrame>) {
DTabPaneJsCpuStatistics.ts21 import { type JsCpuProfilerChartFrame, JsCpuProfilerStatisticsStruct } from '../../../../bean/JsStr… alias
39 set data(data: SelectionParam | Array<JsCpuProfilerChartFrame>) {
73 …private getDataByWorker(data: SelectionParam | Array<JsCpuProfilerChartFrame>, handler: Function):…
DTabPaneJsCpu.ts19 import { type JsCpuProfilerChartFrame, JsCpuProfilerTabStruct } from '../../../../bean/JsStruct'; alias
41 private getDataByWorker(args: Array<JsCpuProfilerChartFrame>, handler: Function): void {
49 set data(data: SelectionParam | Array<JsCpuProfilerChartFrame>) {
/developtools/smartperf_host/ide/src/trace/component/
DUtils.ts15 import { type JsCpuProfilerChartFrame } from '../bean/JsStruct'; alias
22 data: JsCpuProfilerChartFrame,
24 parent?: JsCpuProfilerChartFrame
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerCpuProfiler.ts27 import { type JsCpuProfilerChartFrame } from '../../bean/JsStruct'; alias
115 let dataArr: Array<JsCpuProfilerChartFrame> = [];
131 dataArr: Array<JsCpuProfilerChartFrame> = [],
163 function getSelectStruct(data: JsCpuProfilerChartFrame, selectStruct: JsCpuProfilerStruct, parentId…
182 function setSelectChildrenState(data: JsCpuProfilerChartFrame) {
207 children!: Array<JsCpuProfilerChartFrame>;
/developtools/smartperf_host/ide/test/trace/bean/
DJsStruct.test.ts20 import { JsCpuProfilerUIStruct, JsCpuProfilerChartFrame, JsCpuProfilerTabStruct, JsCpuProfilerStati…
24 let jsCpuProfilerChartFrame = new JsCpuProfilerChartFrame();
/developtools/smartperf_host/ide/src/trace/database/data-trafic/
DArkTsReceiver.ts17 import { JsCpuProfilerChartFrame, type JsCpuProfilerUIStruct } from '../../bean/JsStruct';
137 function combineChartData(res: Array<JsCpuProfilerSample>): Array<JsCpuProfilerChartFrame> {
138 const combineSample = new Array<JsCpuProfilerChartFrame>();
189 …teNewChartFrame(sample: JsCpuProfilerSample, combineSample: Array<JsCpuProfilerChartFrame>): void {
190 let lastSymbol: JsCpuProfilerChartFrame;
214 …ymbolToChartFrame(sample: JsCpuProfilerSample, symbol: JsProfilerSymbol): JsCpuProfilerChartFrame {
215 const chartFrame = new JsCpuProfilerChartFrame(
240 function combineCallChain(lastCallTree: JsCpuProfilerChartFrame, sample: JsCpuProfilerSample): void…
242 let parentCallFrame: JsCpuProfilerChartFrame;
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpArkTsChart.ts27 import { type JsCpuProfilerChartFrame } from '../../bean/JsStruct'; alias
46 private allCombineDataMap = new Map<number, JsCpuProfilerChartFrame>();
54 public get chartFrameMap(): Map<number, JsCpuProfilerChartFrame> {
116 this.allCombineDataMap = new Map<number, JsCpuProfilerChartFrame>();
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceSheet.ts53 import { type JsCpuProfilerChartFrame } from '../../../bean/JsStruct'; alias
657 displayJsProfilerData = (data: Array<JsCpuProfilerChartFrame>): void => {