Home
last modified time | relevance | path

Searched refs:maxHeight (Results 1 – 12 of 12) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/
DSpChartList.ts66 private maxHeight = 0; property in SpChartList
134 this.maxHeight = 0;
135 this.collectEl1!.childNodes.forEach((item) => (this.maxHeight += (item as any).clientHeight));
136 this.collectEl2!.childNodes.forEach((item) => (this.maxHeight += (item as any).clientHeight));
138 this.maxHeight += this.groupTitle1.clientHeight;
141 this.maxHeight += this.groupTitle2.clientHeight;
144 this.maxHeight = Math.min(this.getMaxLimitHeight(), this.maxHeight);
146 this.style.height = `${Math.min(this.maxHeight, this.manualHeight)}px`;
148 this.style.height = `${this.maxHeight}px`;
219 this.maxHeight = 0;
[all …]
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpProcessChart.ts149 let maxHeight = max * 20;
150 funcRow.style.height = `${maxHeight}px`;
151 funcRow.setAttribute('height', `${maxHeight}`);
360 let maxHeight: number = maxDepth * unitHeight;
361 expectedRow.style.height = `${maxHeight}px`;
362 expectedRow.setAttribute('height', `${maxHeight}`);
415 let maxHeight: number = maxDepth * unitHeight;
416 actualRow.style.height = `${maxHeight}px`;
417 actualRow.setAttribute('height', `${maxHeight}`);
631 let maxHeight = max * 20;
[all …]
DSpFrameTimeChart.ts130 let maxHeight: number = maxDepth * unitHeight;
131 expectedTimeLineRow.style.height = `${maxHeight}px`;
132 expectedTimeLineRow.setAttribute('height', `${maxHeight}`);
184 let maxHeight: number = maxDepth * unitHeight;
185 actualTimeLineRow.style.height = `${maxHeight}px`;
186 actualTimeLineRow.setAttribute('height', `${maxHeight}`);
346 let maxHeight: number = (maxDepth + unitIndex) * unitHeight;
347 frameAnimationRow.style.height = `${maxHeight}px`;
348 frameAnimationRow.setAttribute('height', `${maxHeight}`);
DSpHiPerf.ts257 let maxHeight = res.maxDepth * 20; variable
258 perfCallCutRow.funcMaxHeight = maxHeight;
260 perfCallCutRow!.style.height = `${maxHeight}px`;
606 let maxHeight = this.stackChartMaxDepth * 20; variable
607 row.funcMaxHeight = maxHeight;
609 row!.style.height = `${maxHeight}px`;
DSpArkTsChart.ts113 let maxHeight = res.maxDepth * 20;
114 this.jsCpuProfilerRow!.style.height = `${maxHeight}px`;
/developtools/smartperf_host/ide/test/trace/database/ui-worker/
DProcedureWorkerFunc.test.ts164 maxHeight: 222, variable
DProcedureWorkerEnergyState.test.ts169 maxHeight: 21,
DProcedureWorkerFPS.test.ts164 maxHeight: 52,
DProcedureWorkerEnergySystem.test.ts243 maxHeight: 20,
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLegend.ets619 var maxHeight: number = 0;
650 maxHeight += labelLineHeight + yEntrySpace;
657 maxHeight += labelLineHeight + yEntrySpace;
669 this.mNeededHeight = maxHeight;
821 var maxHeight : number = 0;
849 maxHeight += labelLineHeight + yEntrySpace;
854 maxHeight += labelLineHeight + yEntrySpace;
864 this.mNeededHeight = maxHeight;
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerEnergyPower.ts299 let maxHeight =
309 …let drawHeight: number = Math.floor(((maxHeight || 0) * (this.rowHeight - 40)) / EnergyPowerStruct…
/developtools/smartperf_host/ide/src/base-ui/table/
DLitPageTable.ts558 let maxHeight = Math.max(totalHeight, this.tableElement!.scrollTop); variable
563 if (maxHeight <= minHeight) {