Home | History | Annotate | Download | only in timer

Lines Matching refs:timeLeft

263             long timeLeft = timerIsTicking ? timer.getTimesupTime() - now : timer.mTimeLeft;
264 contentText = buildTimeRemaining(context, timeLeft);
265 if (timerIsTicking && timeLeft > TimerObj.MINUTE_IN_MILLIS) {
266 nextBroadcastTime = getBroadcastTime(now, timeLeft);
280 long timeLeft = completionTime - now;
282 buildTimeRemaining(context, timeLeft));
283 if (timeLeft <= TimerObj.MINUTE_IN_MILLIS) {
287 timeLeft = completionTime - now;
288 nextBroadcastTime = getBroadcastTime(now, timeLeft);
291 nextBroadcastTime = getBroadcastTime(now, timeLeft);
355 private String buildTimeRemaining(Context context, long timeLeft) {
356 if (timeLeft < 0) {
363 seconds = timeLeft / 1000;
396 long timeLeft = timesupTime - now;
397 if (timesupTime < nextTimesup && (!requireNextUpdate || timeLeft > 60) ) {