Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts111 currentDuration: number = 0; property in RangeRuler
435 this.currentDuration = new Date().getTime() - this.animaStartTime;
441 … if (Math.trunc(this.currentDuration / this.cacheInterval.interval) !== this.cacheInterval.value) {
443 this.cacheInterval.value = Math.trunc(this.currentDuration / this.cacheInterval.interval);
570 this.currentDuration = (Date.now() - this.animaStartTime!) / this.f; //reg
571 if (this.currentDuration >= this.fixReg) {
572 this.currentDuration = this.fixReg;
574 let bb = Math.tan((Math.PI / 180) * this.currentDuration);
594 this.currentDuration = (Date.now() - this.animaStartTime!) / this.f;
595 if (this.currentDuration >= this.fixReg) {
[all …]
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerTimeline.ts395 currentDuration: number = 0;
670 … this.range.startNS += (this.centerXPercentage * this.currentDuration * 2 * this.scale) / this.p;
671 …this.range.endNS -= ((1 - this.centerXPercentage) * this.currentDuration * 2 * this.scale) / this.…
681 … this.range.startNS -= (this.centerXPercentage * this.currentDuration * 2 * this.scale) / this.p;
682 …this.range.endNS += ((1 - this.centerXPercentage) * this.currentDuration * 2 * this.scale) / this.…
692 let s = (this.scale / this.p) * this.currentDuration;
704 this.range.startNS += (this.scale / this.p) * this.currentDuration;
705 this.range.endNS += (this.scale / this.p) * this.currentDuration;
719 this.currentDuration = duration;