Home
last modified time | relevance | path

Searched refs:scale (Results 1 – 25 of 55) sorted by relevance

123

/developtools/smartperf_host/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts74 scale: number; property
121 private scale: number = 0; property in RangeRuler
206 this.scale = maxScale;
208 this.scale = minScale;
213 if (this.scale === 0) {
214 this.scale = this.scales[0];
218 let rangeYu = this.range.startNS % this.scale;
219 let rangeRealW = (this.scale * this.frame.width) / (this.range.endNS - this.range.startNS);
230 this.range.scale = this.scale;
232 let first_NodeWidth = ((this.scale - rangeYu) / this.scale) * rangeRealW;
[all …]
/developtools/ace_js2bundle/ace-loader/test/card/testError/pages/transition/
Dtransition.css9 transform: translate(0px) rotate(0deg) scale(1.0);
13 transform: translate(100px) rotate(180deg) scale(2.0);
18 transition-enter: "translate(100px) rotate(180deg) scale(2.0)";
19 transition-exit: 'translate(100px) rotate(180deg) scale(2.0)';
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts70 scale: number; property
115 private scale: number = 0; property in RangeRuler
215 this.scale = max;
217 this.scale = min;
222 if (this.scale == 0) {
223 this.scale = this.scales[0];
226 let yu = this.range.startNS % this.scale;
227 let realW = (this.scale * this.frame.width) / (this.range.endNS - this.range.startNS);
239 this.range.scale = this.scale;
241 let first_NodeWidth = ((this.scale - yu) / this.scale) * realW;
[all …]
/developtools/hiperf/src/
Dsubcommand_stat.cpp261 double scale = 1.0; in ReportDetailInfos() local
293 double scale = 1.0; in ReportNormal() local
305 scale = 1 / (static_cast<double>(it->second->time_enabled) / it->second->time_running); in ReportNormal()
308 comment.c_str(), scale * ratio); in ReportNormal()
315 const std::string &configName, const __u64 group_id, __u64 &eventCount, double &scale) in FindEventCount() argument
323 scale = static_cast<double>(itr->second->time_enabled) / itr->second->time_running; in FindEventCount()
330 …bCommandStat::FindPerCoreEventCount(PerfEvents::Summary &summary, __u64 &eventCount, double &scale) in FindPerCoreEventCount() argument
334 scale = static_cast<double>(summary.time_enabled) / summary.time_running; in FindPerCoreEventCount()
404 double scale = 1.0; in GetDetailComments() local
406 scale = static_cast<double>(summary.time_enabled) / summary.time_running; in GetDetailComments()
[all …]
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerTimeline.ts428 private scale: number = 0;
502 this.scale = max;
504 this.scale = min;
509 if (this.scale == 0) {
510 this.scale = this.scales[0];
513 let timeLineYu = this.range.startNS % this.scale;
514 let timeLineRealW = (this.scale * this.frame.width) / (this.range.endNS - this.range.startNS);
527 let firstNodeWidth = ((this.scale - timeLineYu) / this.scale) * timeLineRealW;
535 tmpNs += this.scale;
695 if (this.scale === 50) return;
[all …]
DProcedureWorker.ts167 contextList[e.data.type].scale(e.data.params.dpr, e.data.params.dpr);
193 req.scale = e.data.params.scale;
210 req.context.scale(e.data.params.dpr, e.data.params.dpr);
DProcedureWorkerHiPerfProcess.ts29 let groupBy10MS = hiPerfProcessReq.scale > 30_000_000;
/developtools/profiler/host/smartperf/ide/src/trace/database/ui-worker/
DProcedureWorkerTimeline.ts428 private scale: number = 0;
519 this.scale = max;
521 this.scale = min;
526 if (this.scale == 0) {
527 this.scale = this.scales[0];
530 let yu = this.range.startNS % this.scale;
531 let realW = (this.scale * this.frame.width) / (this.range.endNS - this.range.startNS);
544 let firstNodeWidth = ((this.scale - yu) / this.scale) * realW;
552 tmpNs += this.scale;
691 if (this.scale === 50) return;
[all …]
DProcedureWorker.ts159 contextList[e.data.type].scale(e.data.params.dpr, e.data.params.dpr);
185 req.scale = e.data.params.scale;
202 req.context.scale(e.data.params.dpr, e.data.params.dpr);
DProcedureWorkerHiPerfProcess.ts34 let groupBy10MS = hiPerfProcessReq.scale > 30_000_000;
69 let groupBy10MS = hiPerfProcessRequest.scale > 100_000_000;
DProcedureWorkerHiPerfThread.ts34 let groupBy10MS = hiPerfThreadReq.scale > 30_000_000;
69 let groupBy10MS = hiPerfThreadRequest.scale > 100_000_000;
DProcedureWorkerHiPerfCPU.ts35 let groupBy10MS = req.scale > 30_000_000;
77 let groupBy10MS = hiPerfCpuRequest.scale > 100_000_000;
/developtools/profiler/host/smartperf/ide/src/trace/component/chart/
DSpHiPerf.ts175 scale: TraceRow.range?.scale || 50,
212 scale: TraceRow.range?.scale || 50,
248 scale: TraceRow.range?.scale || 50,
282 scale: TraceRow.range?.scale || 50,
326 scale: TraceRow.range?.scale || 50,
361 scale: TraceRow.range?.scale || 50,
DFrameChart.ts379 let scale = '';
382 scale = Utils.getByteWithUnit(((this.currentSize * sizeRatio) / 10) * i);
385 scale = Utils.timeMsFormat2p(
390 scale = Utils.getProbablyTime(((this.currentDuration * sizeRatio) / 10) * i);
393 let size = this.canvasContext!.measureText(scale).width;
394 … this.canvasContext?.fillText(scale, startX - size - 5, depthHeight, 50); // 50 is Text max Length
543 private scale(index: number): void { method in FrameChart
799 this.scale(1);
802 this.scale(-1);
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DViewPortHandler.ets23 …ains information about the charts current viewport settings, including offsets, scale & translation
43 * minimum scale value on the y-axis
48 * maximum scale value on the y-axis
53 * minimum scale value on the x-axis
58 * maximum scale value on the x-axis
63 * contains the current scale factor of the x-axis
68 * contains the current scale factor of the y-axis
227 * Post-scales by the specified scale factors.
248 * Sets the scale factor to the specified values.
353 // make sure scale and translation are within their bounds
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/
DTimerShaftElement.ts62 export function ns2UnitS(ns: number, scale: number): string {
65 if (scale >= 10_000_000_000) {
67 } else if (scale >= 1_000_000_000) {
69 } else if (scale >= 100_000_000) {
71 } else if (scale >= 10_000_000) {
73 } else if (scale >= 1_000_000) {
75 } else if (scale >= 100_000) {
262 scale: 0,
309 this.ctx?.scale(this.dpr, this.dpr);
/developtools/smartperf_host/ide/src/trace/component/trace/
DTimerShaftElement.ts62 export function ns2UnitS(ns: number, scale: number): string {
65 if (scale >= 10_000_000_000) {
67 } else if (scale >= 1_000_000_000) {
69 } else if (scale >= 100_000_000) {
71 } else if (scale >= 10_000_000) {
73 } else if (scale >= 1_000_000) {
75 } else if (scale >= 100_000) {
263 scale: 0,
310 this.ctx?.scale(this.dpr, this.dpr);
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpHiPerf.ts172 scale: TraceRow.range?.scale || 50,
209 scale: TraceRow.range?.scale || 50,
255 scale: TraceRow.range?.scale || 50,
290 scale: TraceRow.range?.scale || 50,
DFrameChart.ts379 let scale = '';
382 scale = Utils.getByteWithUnit(((this.currentSize * sizeRatio) / 10) * i);
385 scale = Utils.timeMsFormat2p(
390 scale = Utils.getProbablyTime(((this.currentDuration * sizeRatio) / 10) * i);
393 let size = this.canvasContext!.measureText(scale).width;
394 … this.canvasContext?.fillText(scale, startX - size - 5, depthHeight, 50); // 50 is Text max Length
543 private scale(index: number): void { method in FrameChart
799 this.scale(1);
802 this.scale(-1);
/developtools/hiperf/include/
Dsubcommand_stat.h117 const std::string &configName, const __u64 group_id, __u64 &eventcount, double &scale);
124 static bool IsMonitoredAtAllTime(const double &scale);
138 … static bool FindPerCoreEventCount(PerfEvents::Summary &summary, __u64 &eventCount, double &scale);
143 … double running_time_in_sec, double scale, bool findRunningTime);
/developtools/ace_js2bundle/ace-loader/test/card/testError/pages/amimation/
Damimation.css38 transform:translate(0px) rotate(0deg) scale(1.0);
41 transform-style:translate(100px) rotate(180deg) scale(2.0);
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DScaleMode.ets64 this.leftAxisModel.scale(this.scaleY)
65 this.rightAxisModel.scale(this.scaleY)
82 this.leftAxisModel.scale(this.scaleY)
83 this.rightAxisModel.scale(this.scaleY)
/developtools/profiler/host/smartperf/ide/src/base-ui/chart/
Dhelper.ts23 c.getContext('2d', { alpha: true })?.scale(dpr, dpr);
/developtools/smartperf_host/ide/src/base-ui/chart/
Dhelper.ts23 c.getContext('2d', { alpha: true })?.scale(dpr, dpr);
/developtools/ace_js2bundle/ace-loader/test/card/testcase/pages/privateAttr/
DprivateAttr.hml9 …<progress type="scale-ring" percent="{{percent}}" secondarypercent="{{secondarypercent}}" clockwis…

123