Searched defs:timerObj (Results 1 - 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerItemFragment.java43 public static TimerItemFragment newInstance(TimerObj timerObj) { argument
46 args.putParcelable(TAG, timerObj);
H A DTimerReceiver.java425 for (TimerObj timerObj : Timers.timersInTimesUp(mTimers) ) {
426 showTimesUpNotification(context, timerObj);
430 private void showTimesUpNotification(final Context context, TimerObj timerObj) { argument
432 PendingIntent contentIntent = PendingIntent.getActivity(context, timerObj.mTimerId,
434 Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
438 PendingIntent addOneMinuteAction = PendingIntent.getBroadcast(context, timerObj.mTimerId,
440 .putExtra(Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
444 PendingIntent stopIntent = PendingIntent.getBroadcast(context, timerObj.mTimerId,
446 .putExtra(Timers.TIMER_INTENT_EXTRA, timerObj.mTimerId),
456 timerObj
487 cancelTimesUpNotification(final Context context, TimerObj timerObj) argument
[all...]
H A DTimerFullScreenFragment.java161 public void removeTimer(TimerObj timerObj) { argument
162 int position = findTimerPositionById(timerObj.mTimerId);
255 protected int getSection(TimerObj timerObj) {
256 switch (timerObj.mState) {
619 TimerObj timerObj = mAdapter.getItem(i);
620 if (timerObj.mState == TimerObj.STATE_TIMESUP) {
621 timesupTimers.addFirst(timerObj);
860 private void updateTimesUpMode(TimerObj timerObj) { argument
861 if (mOnEmptyListListener != null && timerObj.mState != TimerObj.STATE_TIMESUP) {
862 mAdapter.removeTimer(timerObj);
[all...]

Completed in 64 milliseconds