/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TimerTest.java | 749 t.scheduleAtFixedRate(testTask, 100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ() 759 t.scheduleAtFixedRate(testTask, -100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ() 770 t.scheduleAtFixedRate(testTask, 100, -100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ() 779 t.scheduleAtFixedRate(testTask, 100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ() 821 t.scheduleAtFixedRate(slowThenFastTask, 100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ() 846 t.scheduleAtFixedRate(testTask, d, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ() 857 t.scheduleAtFixedRate(testTask, d, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ() 868 t.scheduleAtFixedRate(testTask, d, -100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ() 878 t.scheduleAtFixedRate(testTask, null, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ() 888 t.scheduleAtFixedRate(null, d, 10); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ScheduledExecutorService.java | 168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() method
|
D | Executors.java | 696 …public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, Ti… 697 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
|
D | ScheduledThreadPoolExecutor.java | 588 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() method in ScheduledThreadPoolExecutor
|
/libcore/ojluni/src/main/java/java/util/ |
D | Timer.java | 330 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { in scheduleAtFixedRate() method in Timer 373 public void scheduleAtFixedRate(TimerTask task, Date firstTime, in scheduleAtFixedRate() method in Timer
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ScheduledExecutorTest.java | 118 p.scheduleAtFixedRate(task, timeoutMillis(), in testSchedule4() 168 p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS); in testFixedRateSequence() 311 p.scheduleAtFixedRate(new NoOpRunnable(), in testScheduleAtFixedRate1_RejectedExecutionException() 711 tasks.add(p.scheduleAtFixedRate(r, 9, 9, SECONDS)); in testShutdownNow_delayedTasks() 782 periodics.add(p.scheduleAtFixedRate(countDowner(periodicLatch1), in testShutdown_cancellation()
|
D | ScheduledExecutorSubclassTest.java | 174 p.scheduleAtFixedRate(task, timeoutMillis(), in testSchedule4() 224 p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS); in testFixedRateSequence() 367 p.scheduleAtFixedRate(new NoOpRunnable(), in testScheduleAtFixedRate1_RejectedExecutionException() 762 tasks.add(p.scheduleAtFixedRate(r, 9, 9, SECONDS)); in testShutdownNow_delayedTasks() 833 periodics.add(p.scheduleAtFixedRate(countDowner(periodicLatch1), in testShutdown_cancellation()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | PollingWatchService.java | 290 .scheduleAtFixedRate(thunk, period, period, TimeUnit.SECONDS);
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | Executors.java | 288 public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate( in scheduleAtFixedRate() method in Executors.DelegatedScheduledExecutorService
|