Home
last modified time | relevance | path

Searched refs:centerXPercentage (Results 1 – 2 of 2) sorted by relevance

/developtools/profiler/host/smartperf/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts243 centerXPercentage: number = 0; property in RangeRuler
248 this.centerXPercentage = x / (this.canvas?.clientWidth || 0)
249 if (this.centerXPercentage <= 0) {
250 this.centerXPercentage = 0
251 } else if (this.centerXPercentage >= 1) {
252 this.centerXPercentage = 1
350 … this.range.startNS += (this.centerXPercentage * this.currentDuration * 2 * this.scale / this.p);
351 …this.range.endNS -= ((1 - this.centerXPercentage) * this.currentDuration * 2 * this.scale / this.p…
361 … this.range.startNS -= (this.centerXPercentage * this.currentDuration * 2 * this.scale / this.p);
362 …this.range.endNS += ((1 - this.centerXPercentage) * this.currentDuration * 2 * this.scale / this.p…
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/database/
DProcedureWorkerTimeline.ts334 centerXPercentage: number = 0;
491 this.centerXPercentage = x / (this.frame.width || 0)
492 if (this.centerXPercentage <= 0) {
493 this.centerXPercentage = 0
494 } else if (this.centerXPercentage >= 1) {
495 this.centerXPercentage = 1
588 … this.range.startNS += (this.centerXPercentage * this.currentDuration * 2 * this.scale / this.p);
589 …this.range.endNS -= ((1 - this.centerXPercentage) * this.currentDuration * 2 * this.scale / this.p…
599 … this.range.startNS -= (this.centerXPercentage * this.currentDuration * 2 * this.scale / this.p);
600 …this.range.endNS += ((1 - this.centerXPercentage) * this.currentDuration * 2 * this.scale / this.p…
[all …]