/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
OneShotScheduler.java | 28 * filters will be scheduled, and possibly repeatedly, until there is no filter 29 * that can be scheduled. 34 private HashMap <String, Integer> scheduled; field in class:OneShotScheduler 41 scheduled = new HashMap<String, Integer>(); 48 scheduled.clear(); 54 // return the first filter that is not scheduled before. 61 if (!scheduled.containsKey(filter.getName())) { 63 scheduled.put(filter.getName(),1); 71 // save the first scheduled one
|
/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...] |
/development/samples/browseable/DirectBoot/ |
_index.jd | 10 This sample works as a simple alarm clock. On > Android N devices, the scheduled alarms
|
/external/junit/src/org/junit/runners/model/ |
RunnerScheduler.java | 17 * after all children have been scheduled (for example,
|
/external/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
stacked_pane_test.html | 27 // No rebuilds should occur when not scheduled. 31 // Single rebuild should occur when scheduled once. 36 // Only a single rebuild should occur even when scheduled multiple times.
|
/external/autotest/client/site_tests/performance_Tracker/ |
control | 7 PURPOSE = "Records cpu and memory usage for manually scheduled test."
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAlarmManager.java | 46 * Non-Android accessor consumes and returns the next scheduled alarm on the 49 * @return the next scheduled alarm, wrapped in a 61 * Non-Android accessor returns the most recent scheduled alarm without 64 * @return the most recently scheduled alarm, wrapped in a
|
ShadowLooper.java | 13 * that are scheduled to run immediately can be triggered by calling {@link #idle()} 104 * Causes {@link Runnable}s that have been scheduled to run immediately to actually run. Does not advance the 112 * Causes {@link Runnable}s that have been scheduled to run within the next {@code intervalMillis} milliseconds to 122 * Causes all of the {@link Runnable}s that have been scheduled to run while advancing the scheduler's clock to the 123 * start time of the last scheduled {@link Runnable}. 130 * Causes the next {@link Runnable}(s) that have been scheduled to run while advancing the scheduler's clock to its 131 * start time. If more than one {@link Runnable} is scheduled to run at this time then they will all be run. 138 * Causes only one of the next {@link Runnable}s that have been scheduled to run while advancing the scheduler's 139 * clock to its start time. Only one {@link Runnable} will run even if more than one has ben scheduled to run at the
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ScheduledFuture.java | 11 * Usually a scheduled future is the result of scheduling
|
/external/llvm/lib/CodeGen/ |
LatencyPriorityQueue.cpp | 25 // cannot easily be modeled as edges with latencies to be scheduled as 62 // We found an available, but not scheduled, predecessor. If it's the 88 // scheduledNode - As nodes are scheduled, we look to see if there are any 100 /// scheduled. If SU is not itself available, then there is at least one 101 /// predecessor node that has not been scheduled yet. If SU has exactly ONE 103 /// scheduled will make this node available, so it is better than some other 106 if (SU->isAvailable) return; // All preds scheduled. 111 // Okay, we found a single predecessor that is available, but not scheduled.
|
/packages/apps/TV/src/com/android/tv/dvr/ |
DvrDataManager.java | 52 * Returns scheduled but not started recordings that have not expired. 101 * Returns the scheduled recording program with the given recordingId or null if is not found. 108 * Returns the scheduled recording program with the given programId or null if is not found.
|
/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...] |
/external/autotest/client/site_tests/network_CDMAActivate/ |
control | 28 scheduled in case of failure.
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
TrialSchedulingPolicy.java | 20 * <p>TODO(lukes): Currently this is extremely simple. Trials can be scheduled in parallel with
|
/external/llvm/test/CodeGen/X86/ |
testb-je-fusion.ll | 3 ; testb should be scheduled right before je to enable macro-fusion.
|
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/ |
TestScheduledExecutorService.java | 36 private List<TestFuture> scheduled = new ArrayList<>(); field in class:TestScheduledExecutorService 118 scheduled.add(future); 140 for (TestFuture future : scheduled) { 146 scheduled.get(taskIndex).runnable.run();
|
/frameworks/base/services/core/java/com/android/server/job/ |
JobSchedulerInternal.java | 30 * Returns a list of pending jobs scheduled by the system service.
|
/packages/apps/StorageManager/res/values/ |
config.xml | 20 <!-- Whether the automatic storage management job should be scheduled. -->
|
/system/connectivity/shill/vpn/ |
vpn_driver.h | 93 // scheduled. 95 // Cancels the connect timeout callback, if any, previously scheduled through 98 // Returns true if a connect timeout is scheduled, false otherwise. 101 // Called if a connect timeout scheduled through StartConnectTimeout
|
/system/connectivity/shill/wimax/ |
wimax.h | 108 // not be restarted if it's already scheduled. 110 // Cancels the connect timeout callback, if any, previously scheduled through 113 // Returns true if a connect timeout is scheduled, false otherwise. 115 // Called if a connect timeout scheduled through StartConnectTimeout
|
/external/libbrillo/brillo/message_loops/ |
glib_message_loop.h | 42 // Called by the GLib's main loop when is time to call the callback scheduled 53 // Called by the GLib's main loop when the scheduled callback is removed due
|
/frameworks/base/libs/common_time/ |
utils.h | 38 // no timeout is scheduled. 44 // timeout is currently scheduled.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
DejankUtils.java | 47 * timing is not critical for animation. The work is then scheduled at the same time 59 * Removes a previously scheduled runnable.
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerReceiver.java | 28 * This broadcast receiver exists to handle timer expiry scheduled in 4.2.1 and prior. It must exist 29 * for at least one release cycle before removal to honor these old scheduled timers after upgrading
|