HomeSort by relevance Sort by last modified time
    Searched refs:invokeAll (Results 1 - 25 of 47) sorted by null

1 2

  /external/guava/guava/src/com/google/common/util/concurrent/
ListeningExecutorService.java 69 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
85 <T> List<Future<T>> invokeAll(
ForwardingExecutorService.java 54 public <T> List<Future<T>> invokeAll(
56 return delegate().invokeAll(tasks);
60 public <T> List<Future<T>> invokeAll(
63 return delegate().invokeAll(tasks, timeout, unit);
AbstractListeningExecutorService.java 33 * method. More concretely, the {@code submit}, {@code invokeAny} and {@code invokeAll} methods
147 @Override public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
180 @Override public <T> List<Future<T>> invokeAll(
  /external/guava/guava-bootstrap/src/java/util/concurrent/
ExecutorService.java 34 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
37 <T> List<Future<T>> invokeAll(
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorService.java 34 * Methods {@code invokeAny} and {@code invokeAll} perform the most
244 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
274 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks,
Executors.java 601 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
603 return e.invokeAll(tasks);
605 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks,
608 return e.invokeAll(tasks, timeout, unit);
AbstractExecutorService.java 13 * {@code invokeAny} and {@code invokeAll} methods using a
197 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
228 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks,
ForkJoinTask.java 41 * #invokeAll(ForkJoinTask...) invokeAll}. However, this class also
96 * Method {@code invokeAll} (available in multiple versions)
716 public static void invokeAll(ForkJoinTask<?> t1, ForkJoinTask<?> t2) {
740 public static void invokeAll(ForkJoinTask<?>... tasks) {
784 public static <T extends ForkJoinTask<?>> Collection<T> invokeAll(Collection<T> tasks) {
786 invokeAll(tasks.toArray(new ForkJoinTask<?>[tasks.size()]));
    [all...]
ForkJoinPool.java     [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractListeningExecutorServiceTest.java 327 * invokeAll(null) throws NPE
332 e.invokeAll(null);
341 * invokeAll(empty collection) returns empty collection
347 e.invokeAll(new ArrayList<Callable<String>>());
355 * invokeAll(c) throws NPE if c has null elements
363 e.invokeAll(l);
372 * get of returned element of invokeAll(c) throws exception on failed task
379 List<Future<String>> futures = e.invokeAll(l);
393 * invokeAll(c) returns results of all completed tasks in c
401 List<Future<String>> futures = e.invokeAll(l)
    [all...]
MoreExecutorsTest.java 114 executor.invokeAll(Collections.nCopies(10, incrementTask));
213 results = service.invokeAll(callables);
216 results = service.invokeAll(callables, 1, SECONDS);
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractExecutorServiceTest.java 303 * invokeAll(null) throws NPE
308 e.invokeAll(null);
317 * invokeAll(empty collection) returns empty collection
322 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>());
330 * invokeAll(c) throws NPE if c has null elements
338 e.invokeAll(l);
347 * get of returned element of invokeAll(c) throws exception on failed task
354 List<Future<String>> futures = e.invokeAll(l);
368 * invokeAll(c) returns results of all completed tasks in c
376 List<Future<String>> futures = e.invokeAll(l)
    [all...]
ForkJoinTaskTest.java 770 * invokeAll(t1, t2) invokes all task arguments
777 invokeAll(f, g);
787 * invokeAll(tasks) with 1 argument invokes task
793 invokeAll(f);
801 * invokeAll(tasks) with > 2 argument invokes tasks
809 invokeAll(f, g, h);
821 * invokeAll(collection) invokes all tasks in the collection
833 invokeAll(set);
845 * invokeAll(tasks) with any null task throws NPE
854 invokeAll(f, g, h)
    [all...]
RecursiveActionTest.java 177 invokeAll(f1, f2);
195 invokeAll(f1, f2);
864 * invokeAll(t1, t2) invokes all task arguments
871 invokeAll(f, g);
881 * invokeAll(tasks) with 1 argument invokes task
887 invokeAll(f);
895 * invokeAll(tasks) with > 2 argument invokes tasks
903 invokeAll(f, g, h);
918 * invokeAll(collection) invokes all tasks in the collection
930 invokeAll(set)
    [all...]
ScheduledExecutorTest.java 867 * invokeAll(null) throws NPE
872 e.invokeAll(null);
    [all...]
ForkJoinPoolTest.java 716 * invokeAll(null) throws NullPointerException
721 e.invokeAll(null);
730 * invokeAll(empty collection) returns empty collection
736 = e.invokeAll(new ArrayList<Callable<String>>());
744 * invokeAll(c) throws NullPointerException if c has null elements
752 e.invokeAll(l);
761 * get of returned element of invokeAll(c) throws
768 List<Future<String>> futures = e.invokeAll(l);
781 * invokeAll(c) returns results of all completed tasks in c
789 List<Future<String>> futures = e.invokeAll(l)
    [all...]
CountedCompleterTest.java 988 * invokeAll(t1, t2) invokes all task arguments
995 invokeAll(f, g)
    [all...]
ScheduledExecutorSubclassTest.java     [all...]
RecursiveTaskTest.java 684 * invokeAll(t1, t2) invokes all task arguments
691 invokeAll(f, g);
700 * invokeAll(tasks) with 1 argument invokes task
706 invokeAll(f);
714 * invokeAll(tasks) with > 2 argument invokes tasks
722 invokeAll(f, g, h);
735 * invokeAll(collection) invokes all tasks in the collection
747 invokeAll(set);
760 * invokeAll(tasks) with any null task throws NPE
769 invokeAll(f, g, h)
    [all...]
ThreadPoolExecutorSubclassTest.java     [all...]
ThreadPoolExecutorTest.java     [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
RobolectricBackgroundExecutorService.java 68 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables) throws InterruptedException {
73 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) throws InterruptedException {
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /frameworks/testing/espresso/libs/
guava-14.0.1.jar 

Completed in 270 milliseconds

1 2