Searched defs:timeLeft (Results 1 - 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerListItem.java55 public void set(long timerLength, long timeLeft, boolean drawRed) { argument
62 mCircleView.setPassedTime(timerLength - timeLeft, drawRed);
H A DTimerReceiver.java197 long timeLeft = timerIsTicking ? timer.getTimesupTime() - now : timer.mTimeLeft;
198 contentText = buildTimeRemaining(context, timeLeft);
199 if (timerIsTicking && timeLeft > 60 * 1000) {
200 nextBroadcastTime = getBroadcastTime(now, timeLeft);
214 long timeLeft = completionTime - now;
216 buildTimeRemaining(context, timeLeft));
217 if (timeLeft <= 60 * 1000) {
221 timeLeft = completionTime - now;
222 nextBroadcastTime = getBroadcastTime(now, timeLeft);
225 nextBroadcastTime = getBroadcastTime(now, timeLeft);
297 buildTimeRemaining(Context context, long timeLeft) argument
[all...]

Completed in 49 milliseconds