Home
last modified time | relevance | path

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

/llvm-project-15.0.7/polly/www/video-js/
H A Dvideo.js1020 …triggerCurrentTimeListeners: function(late, newTime){ // FF passes milliseconds late as the first … argument
1022 (listener.context(this))(newTime || this.currentTime());
1210 updatePlayProgressBars: function(newTime){ argument
1211 …var progress = (newTime !== undefined) ? newTime / this.duration() : this.currentTime() / this.dur…
1244 updateCurrentTimeDisplays: function(newTime){ argument
1247 var time = (newTime) ? newTime : this.currentTime();
1307 var newTime = newProgress * this.duration();
1308 this.triggerCurrentTimeListeners(0, newTime); // Allows for smooth scrubbing
1310 if (newTime == this.duration()) { newTime = newTime - 0.1; }
1311 this.currentTime(newTime);
/llvm-project-15.0.7/mlir/lib/Support/
H A DTiming.cpp185 auto newTime = std::chrono::steady_clock::now() - startTime; in stop() local
186 wallTime += newTime; in stop()
187 userTime += newTime; in stop()