HomeSort by relevance Sort by last modified time
    Searched refs:SCHEDULED (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/java/util/
TimerTask.java 29 * A task that can be scheduled for one-time or repeated execution by a Timer.
48 * This task has not yet been scheduled.
53 * This task is scheduled for execution. If it is a non-repeating task,
56 static final int SCHEDULED = 1;
71 * System.currentTimeMillis, assuming this task is scheduled for execution.
95 * Cancels this timer task. If the task has been scheduled for one-time
96 * execution and has not yet run, or has not yet been scheduled, it will
97 * never run. If the task has been scheduled for repeated execution, it
108 * @return true if this task is scheduled for one-time execution and has
109 * not yet run, or this task is scheduled for repeated execution
    [all...]
Timer.java 32 * background thread. Tasks may be scheduled for one-time execution, or for
77 * scheduled tasks (thousands should present no problem). Internally,
79 * a task is O(log n), where n is the number of concurrently scheduled tasks.
182 * @param task task to be scheduled.
186 * @throws IllegalStateException if task was already scheduled or
198 * the time is in the past, the task is scheduled for immediate execution.
200 * @param task task to be scheduled.
203 * @throws IllegalStateException if task was already scheduled or
216 * <p>In fixed-delay execution, each execution is scheduled relative to
233 * @param task task to be scheduled
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 167 public static final int SCHEDULED = CalendarAlerts.STATE_SCHEDULED;
416 int id = at.addAlertRow(100, SCHEDULED, ACCEPTED, 0 /* all day */, 1300000, 2300000, 0);
457 int id9 = at.addAlertRow(9, SCHEDULED, ACCEPTED, 0, createTimeInMillis(9, 0),
459 int id8 = at.addAlertRow(8, SCHEDULED, ACCEPTED, 0, createTimeInMillis(8, 0),
461 int id7 = at.addAlertRow(7, SCHEDULED, ACCEPTED, 0, createTimeInMillis(7, 0),
465 int id6 = at.addAlertRow(6, SCHEDULED, ACCEPTED, 0, createTimeInMillis(5, 0),
467 int id5 = at.addAlertRow(5, SCHEDULED, ACCEPTED, 0, createTimeInMillis(4, 55),
469 int id4 = at.addAlertRow(4, SCHEDULED, ACCEPTED, 0, createTimeInMillis(4, 50),
473 int id3 = at.addAlertRow(3, SCHEDULED, ACCEPTED, 0, createTimeInMillis(3, 0),
475 int id2 = at.addAlertRow(2, SCHEDULED, ACCEPTED, 0, createTimeInMillis(2, 0)
    [all...]

Completed in 491 milliseconds