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

1 2 3

  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 41 @Override protected final <T> ListenableFutureTask<T> newTaskFor(Runnable runnable, T value) {
45 @Override protected final <T> ListenableFutureTask<T> newTaskFor(Callable<T> callable) {
  /libcore/ojluni/src/main/java/java/util/concurrent/
ExecutorCompletionService.java 126 private RunnableFuture<V> newTaskFor(Callable<V> task) {
130 return aes.newTaskFor(task);
133 private RunnableFuture<V> newTaskFor(Runnable task, V result) {
137 return aes.newTaskFor(task, result);
182 RunnableFuture<V> f = newTaskFor(task);
189 RunnableFuture<V> f = newTaskFor(task, result);
AbstractExecutorService.java 49 * {@link RunnableFuture} returned by {@code newTaskFor}, which defaults
53 * returned. Subclasses may override the {@code newTaskFor} methods
65 * protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) {
68 * protected <V> RunnableFuture<V> newTaskFor(Runnable r, V v) {
92 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) {
107 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
117 RunnableFuture<Void> ftask = newTaskFor(task, null);
128 RunnableFuture<T> ftask = newTaskFor(task, result);
139 RunnableFuture<T> ftask = newTaskFor(task);
240 RunnableFuture<T> f = newTaskFor(t)
    [all...]
ForkJoinPool.java     [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/
FifoPriorityThreadPoolExecutor.java 36 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) {
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadPoolExecutorSubclassTest.java 153 protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) {
156 protected <V> RunnableFuture<V> newTaskFor(Runnable r, V v) {
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/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/io/netty/netty-common/4.1.0.CR3/
netty-common-4.1.0.CR3.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso_web_release_no_deps.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.3.Final/
netty-common-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.6.Final/
netty-common-4.1.6.Final.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.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 

Completed in 673 milliseconds

1 2 3