Home
last modified time | relevance | path

Searched refs:minX (Results 1 – 4 of 4) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/timer-shaft/
DRect.ts60 let minX = Math.min(rectA.x, rectB.x);
62 return maxX - minX < rectB.width + rectA.width && maxY - minY <= rectA.height + rectB.height;
105 let minX = this.x <= rectObj.x ? this.x : rectObj.x;
107 return maxX - minX <= rectObj.width + this.width && maxY - minY <= this.height + rectObj.height;
/developtools/smartperf_host/ide/src/base-ui/chart/pie/
DLitChartPie.ts509 let minX = r1.x < rect.x ? r1.x : rect.x; variable
511 cross = maxX - minX < rect.w + r1.w && maxY - minY < r1.h + rect.h;
512 crossW = Math.abs(maxX - minX - (rect.w + r1.w));
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DRadarChartMode.ets232 let minX = this.xAxis.getAxisMinimum() > 0 ? 0 : this.xAxis.getAxisMinimum();
235 this.xScale = (rect.right - rect.left) / (this.xAxis.getAxisMaximum() - minX);
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerCommon.ts465 let minX = r1.x <= rect.x ? r1.x : rect.x;
469 return maxX - minX <= rect.width + r1.width && maxY - minY <= r1.height + rect.height;
500 let minX = this.x <= rect.x ? this.x : rect.x;
504 return maxX - minX <= rect.width + this.width && maxY - minY <= this.height + rect.height;