Searched refs:timeLeft (Results 1 – 7 of 7) sorted by relevance
137 synchronized void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument138 if (timeLeft.isNegative() || timeLeft.isZero()) { in setCountDownLeft()141 mCountDownRenderer.setCountDownLeft(timeLeft); in setCountDownLeft()
129 public void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument131 mLoopingAnimationThread.setCountDownLeft(timeLeft); in setCountDownLeft()137 msgArgs.put("seconds_left", timeLeft.getSeconds()); in setCountDownLeft()
153 synchronized void setCountDownLeft(Duration timeLeft) { in setCountDownLeft() argument154 mCountDownLeft = timeLeft; in setCountDownLeft()
170 timeLeft = duration - timeElapsed171 self.odometerInKm += (self.speedInMps + gpxFrame.speedInMps) / 2.0 * timeLeft / 1000173 time.sleep(timeLeft)
289 int timeLeft = (int) ((endTimestamp - currentTimestamp) / 1000L); in updateCountdownSummary() local290 updateTimerDisplay(timeLeft); in updateCountdownSummary()
556 int timeLeft = (int)(header.targetTime - currentTime); in drawHeader() local557 if (timeLeft <= 0) { in drawHeader()562 header.y = header.targetY + (header.sourceY - header.targetY) * timeLeft in drawHeader()
296 long timeLeft = timeoutMs - (SystemClock.elapsedRealtime() - start); in awaitCountDownLatches() local297 if (!latches[i].await(timeLeft, TimeUnit.MILLISECONDS)) { in awaitCountDownLatches()