Searched refs:maxHeight (Results 1 – 12 of 12) sorted by relevance
| /developtools/smartperf_host/ide/src/trace/component/trace/ |
| D | SpChartList.ts | 66 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/ |
| D | SpProcessChart.ts | 149 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 …]
|
| D | SpFrameTimeChart.ts | 130 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}`);
|
| D | SpHiPerf.ts | 257 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`;
|
| D | SpArkTsChart.ts | 113 let maxHeight = res.maxDepth * 20; 114 this.jsCpuProfilerRow!.style.height = `${maxHeight}px`;
|
| /developtools/smartperf_host/ide/test/trace/database/ui-worker/ |
| D | ProcedureWorkerFunc.test.ts | 164 maxHeight: 222, variable
|
| D | ProcedureWorkerEnergyState.test.ts | 169 maxHeight: 21,
|
| D | ProcedureWorkerFPS.test.ts | 164 maxHeight: 52,
|
| D | ProcedureWorkerEnergySystem.test.ts | 243 maxHeight: 20,
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/ |
| D | Legend.ets | 619 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/ |
| D | ProcedureWorkerEnergyPower.ts | 299 let maxHeight = 309 …let drawHeight: number = Math.floor(((maxHeight || 0) * (this.rowHeight - 40)) / EnergyPowerStruct…
|
| /developtools/smartperf_host/ide/src/base-ui/table/ |
| D | LitPageTable.ts | 558 let maxHeight = Math.max(totalHeight, this.tableElement!.scrollTop); variable 563 if (maxHeight <= minHeight) {
|