Lines Matching refs:lastTime
704 let lastTime = file.ticks[file.ticks.length - 1].tm;
708 start = (start / width) * (lastTime - firstTime) + firstTime;
709 end = (end / width) * (lastTime - firstTime) + firstTime;
750 let lastTime = file.ticks[file.ticks.length - 1].tm;
753 firstTime + left / this.canvas.width * (lastTime - firstTime);
755 firstTime + right / this.canvas.width * (lastTime - firstTime);
834 let lastTime = file.ticks[file.ticks.length - 1].tm;
836 let end = Math.min(this.currentState.end, lastTime);
838 this.selectionStart = (start - firstTime) / (lastTime - firstTime) * width;
839 this.selectionEnd = (end - firstTime) / (lastTime - firstTime) * width;
904 let timestampScaler = width / (lastTime - firstTime);