HomeSort by relevance Sort by last modified time
    Searched refs:schedule (Results 101 - 125 of 661) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ToolTip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsJobDurationTests.java 62 js.schedule(job);
SimpleJobService.java 63 js.schedule(jobInfo);
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SuspendStateMonitor.java 81 sleepMonitoringTimer.schedule(this, 0, 100);
  /external/ImageMagick/MagickCore/
prepress.c 117 #pragma omp parallel for schedule(static,4) shared(status) \
  /external/clang/test/OpenMP/
for_ast_print.cpp 104 #pragma omp for schedule(dynamic) linear(a)
105 // CHECK-NEXT: #pragma omp for schedule(dynamic) linear(a)
111 #pragma omp for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) ordered(N) nowait
124 // CHECK-NEXT: #pragma omp for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) ordered(N) nowait
143 #pragma omp for schedule(guided, argc)
144 // CHECK-NEXT: #pragma omp for schedule(guided, argc)
150 #pragma omp for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) ordered nowait linear(g:-1)
155 // CHECK-NEXT: #pragma omp for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) ordered nowait linear(g: -1)
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingScheduledExecutorServiceTest.java 48 testExecutor.schedule(DO_NOTHING, 10, TimeUnit.MINUTES);
51 testExecutor.schedule(Executors.callable(DO_NOTHING), 5, TimeUnit.SECONDS);
125 @Override public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorServiceTest.MockExecutor
133 @Override public <V> ScheduledFuture<V> schedule( method in class:WrappingScheduledExecutorServiceTest.MockExecutor
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 50 timer.schedule(this, DNSConstants.QUERY_WAIT_INTERVAL, DNSConstants.QUERY_WAIT_INTERVAL);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CancelCall.java 39 // Schedule a job to cancel the call in 1 second.
40 executor.schedule(new Runnable() {
  /frameworks/av/media/libstagefright/include/media/stagefright/
VideoFrameScheduler.h 37 nsecs_t schedule(nsecs_t renderTime);
  /frameworks/base/core/java/android/app/job/
JobScheduler.java 41 * JobScheduler with {@link #schedule(JobInfo)}. When the criteria declared are met, the
70 * Returned from {@link #schedule(JobInfo)} when an invalid parameter was supplied. This can occur
76 * Returned from {@link #schedule(JobInfo)} if this job has been successfully scheduled.
81 * Schedule a job to be executed. Will replace any currently scheduled job with the same
87 * you can schedule.
88 * @return the result of the schedule request.
90 public abstract @Result int schedule(@NonNull JobInfo job); method in class:JobScheduler
93 * Similar to {@link #schedule}, but allows you to enqueue work for a new <em>or existing</em>
105 * enqueue. This will allow the system to optimally schedule work along with any pending
123 * you can schedule
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/
AlarmTimeout.java 47 public void schedule(long timeout, int mode) { method in class:AlarmTimeout
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
ProvisionedObserver.java 56 KeyValueBackupJob.schedule(backupManagerService.getContext());
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
SimpleWakefulController.java 42 Button button = (Button)findViewById(R.id.schedule);
63 // Schedule the alarm!
  /hardware/interfaces/broadcastradio/1.1/utils/
WorkerThread.cpp 51 void WorkerThread::schedule(function<void()> task, milliseconds delay) { function in class:android::WorkerThread
84 lk.unlock(); // what() might need to schedule another task
  /libcore/ojluni/src/main/java/java/util/
Timer.java 31 * A facility for threads to schedule tasks for future execution in a
54 * attempt to schedule a task on the timer will result in an
78 * it uses a binary heap to represent its task queue, so the cost to schedule
92 * thread. The timer produces tasks, via its various schedule calls,
139 * schedule repeating "maintenance activities", which must be
190 public void schedule(TimerTask task, long delay) { method in class:Timer
207 public void schedule(TimerTask task, Date time) { method in class:Timer
243 public void schedule(TimerTask task, long delay, long period) { method in class:Timer
284 public void schedule(TimerTask task, Date firstTime, long period) { method in class:Timer
374 * Schedule the specified timer task for execution at the specifie
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
FuturesUtil.java 41 executor.schedule(new Runnable() {
  /packages/apps/DeskClock/src/com/android/deskclock/uidata/
PeriodicCallbackModel.java 112 periodicRunnable.schedule();
135 * @return the time delay from {@code now} to schedule the callback
199 schedule(); method
206 schedule(); method
209 private void schedule() { method in class:PeriodicCallbackModel.PeriodicRunnable
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestScheduledExecutorService.java 87 return schedule(task, 0, TimeUnit.MILLISECONDS);
116 schedule(command, 0, TimeUnit.MILLISECONDS); method
120 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:TestScheduledExecutorService
127 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { method in class:TestScheduledExecutorService
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
omp_loop.h 95 #pragma omp for schedule(dynamic, _Settings::get().workstealing_chunk_size)
omp_loop_static.h 95 #pragma omp for schedule(static, _Settings::get().workstealing_chunk_size)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
omp_loop.h 95 #pragma omp for schedule(dynamic, _Settings::get().workstealing_chunk_size)
omp_loop_static.h 95 #pragma omp for schedule(static, _Settings::get().workstealing_chunk_size)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
omp_loop.h 95 #pragma omp for schedule(dynamic, _Settings::get().workstealing_chunk_size)
omp_loop_static.h 95 #pragma omp for schedule(static, _Settings::get().workstealing_chunk_size)

Completed in 1595 milliseconds

1 2 3 45 6 7 8 91011>>