Home
last modified time | relevance | path

Searched refs:timerLength (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerListItem.java55 public void set(long timerLength, long timeLeft, boolean drawRed) { in set() argument
60 mTimerLength = timerLength; in set()
62 mCircleView.setPassedTime(timerLength - timeLeft, drawRed); in set()
103 public void setLength(long timerLength) { in setLength() argument
104 mTimerLength = timerLength; in setLength()
DTimerObj.java176 public TimerObj(long timerLength, int timerId) { in TimerObj() argument
177 init(timerLength, timerId); in TimerObj()
180 public TimerObj(long timerLength, Context context) { in TimerObj() argument
181 init(timerLength, getNextTimerId(context)); in TimerObj()
DTimerFullScreenFragment.java904 int timerLength = mTimerSetup.getTime(); in onFabClick() local
905 if (timerLength == 0) { in onFabClick()
908 TimerObj t = new TimerObj(timerLength * DateUtils.SECOND_IN_MILLIS, getActivity()); in onFabClick()
DTimerFragment.java464 final int timerLength = mSetupView.getTime(); in onFabClick()
465 final TimerObj timerObj = new TimerObj(timerLength * DateUtils.SECOND_IN_MILLIS, in onFabClick()