Searched refs:scheduleWithFixedDelay (Results 1 - 12 of 12) sorted by relevance

/external/guava/guava/src/com/google/common/util/concurrent/
H A DWrappingScheduledExecutorService.java57 public final ScheduledFuture<?> scheduleWithFixedDelay( method in class:WrappingScheduledExecutorService
59 return delegate.scheduleWithFixedDelay(wrapTask(command), initialDelay, delay, unit);
H A DListeningScheduledExecutorService.java55 ListenableScheduledFuture<?> scheduleWithFixedDelay( method in interface:ListeningScheduledExecutorService
H A DAbstractScheduledService.java112 * {@link ScheduledExecutorService#scheduleWithFixedDelay} method.
125 return executor.scheduleWithFixedDelay(task, initialDelay, delay, unit);
H A DMoreExecutors.java526 public ListenableScheduledFuture<?> scheduleWithFixedDelay( method in class:MoreExecutors.ScheduledListeningDecorator
531 delegate.scheduleWithFixedDelay(task, initialDelay, delay, unit);
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
H A DTestingExecutors.java62 * {@code scheduleWithFixedDelay}. In the case of tasks submitted by
77 * {@code scheduleAtFixedRate} and {@code scheduleWithFixedDelay} are not
145 @Override public ListenableScheduledFuture<?> scheduleWithFixedDelay( method in class:TestingExecutors.NoOpScheduledExecutorService
H A DSameThreadScheduledExecutorService.java192 public ListenableScheduledFuture<?> scheduleWithFixedDelay(Runnable command, method in class:SameThreadScheduledExecutorService
195 "scheduleWithFixedDelay is not supported.");
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DWrappingScheduledExecutorServiceTest.java58 testExecutor.scheduleWithFixedDelay(DO_NOTHING, 100, 10, TimeUnit.SECONDS);
59 mock.assertLastMethodCalled("scheduleWithFixedDelay", 100, 10, TimeUnit.SECONDS);
152 @Override public ScheduledFuture<?> scheduleWithFixedDelay( method in class:WrappingScheduledExecutorServiceTest.MockExecutor
155 lastMethodCalled = "scheduleWithFixedDelay";
H A DAbstractScheduledServiceTest.java53 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
335 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
H A DMoreExecutorsTest.java347 future = service.scheduleWithFixedDelay(runnable, 1, 1, TimeUnit.MILLISECONDS);
380 future = service.scheduleWithFixedDelay(runnable, 5 * 60, 5 * 60, TimeUnit.SECONDS);
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 290 milliseconds