HomeSort by relevance Sort by last modified time
    Searched defs:scheduleWithFixedDelay (Results 1 - 25 of 73) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 45 * {@code scheduleWithFixedDelay} methods create and execute tasks
208 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
ScheduledThreadPoolExecutor.java 77 * {@link #scheduleWithFixedDelay scheduleWithFixedDelay}
105 * and {@code scheduleWithFixedDelay}. By default, a
613 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ListeningScheduledExecutorService.java 55 ListenableScheduledFuture<?> scheduleWithFixedDelay(
WrappingScheduledExecutorService.java 57 public final ScheduledFuture<?> scheduleWithFixedDelay(
59 return delegate.scheduleWithFixedDelay(wrapTask(command), initialDelay, delay, unit);
MoreExecutors.java 592 public ListenableScheduledFuture<?> scheduleWithFixedDelay(
597 delegate.scheduleWithFixedDelay(task, initialDelay, delay, unit);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
TestingExecutors.java 62 * {@code scheduleWithFixedDelay}. In the case of tasks submitted by
77 * {@code scheduleAtFixedRate} and {@code scheduleWithFixedDelay} are not
145 @Override public ListenableScheduledFuture<?> scheduleWithFixedDelay(
SameThreadScheduledExecutorService.java 192 public ListenableScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
195 "scheduleWithFixedDelay is not supported.");
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingScheduledExecutorServiceTest.java 58 testExecutor.scheduleWithFixedDelay(DO_NOTHING, 100, 10, TimeUnit.MINUTES);
59 mock.assertLastMethodCalled("scheduleWithFixedDelay", 100, 10, TimeUnit.MINUTES);
152 @Override public ScheduledFuture<?> scheduleWithFixedDelay(
155 lastMethodCalled = "scheduleWithFixedDelay";
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
ContactsExecutors.java 135 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestScheduledExecutorService.java 138 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorSubclassTest.java 183 * scheduleWithFixedDelay executes runnable after given initial delay
196 p.scheduleWithFixedDelay(task, timeoutMillis(),
239 * scheduleWithFixedDelay executes series of tasks with given period.
270 p.scheduleWithFixedDelay(task, 0, delay, MILLISECONDS);
376 * scheduleWithFixedDelay throws RejectedExecutionException if shutdown
383 p.scheduleWithFixedDelay(new NoOpRunnable(),
763 tasks.add(p.scheduleWithFixedDelay(r, 9, 9, SECONDS));
    [all...]
ScheduledExecutorTest.java 127 * scheduleWithFixedDelay executes runnable after given initial delay
140 p.scheduleWithFixedDelay(task, timeoutMillis(),
183 * scheduleWithFixedDelay executes series of tasks with given period.
214 p.scheduleWithFixedDelay(task, 0, delay, MILLISECONDS);
320 * scheduleWithFixedDelay throws RejectedExecutionException if shutdown
327 p.scheduleWithFixedDelay(new NoOpRunnable(),
712 tasks.add(p.scheduleWithFixedDelay(r, 9, 9, SECONDS));
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.6.Final/
netty-common-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/
netty-common-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.3.Final/
netty-common-4.1.3.Final.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-testlib-20.0.jar 
guava-20.0.jar 
  /external/guice/lib/build/
guava-testlib-16.0.1.jar 
  /prebuilts/misc/common/robolectric/lib/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/21.0/
guava-21.0.jar 
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-16.0.1.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
guava-18.0.jar 

Completed in 575 milliseconds

1 2 3