/libcore/jsr166-tests/src/test/java/jsr166/ |
D | AbstractExecutorServiceTest.java | 250 e.invokeAny(null); in testInvokeAny1() 263 e.invokeAny(new ArrayList<Callable<String>>()); in testInvokeAny2() 280 e.invokeAny(l); in testInvokeAny3() 295 e.invokeAny(l); in testInvokeAny4() 312 String result = e.invokeAny(l); in testInvokeAny5() 399 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny1() 414 e.invokeAny(l, MEDIUM_DELAY_MS, null); in testTimedInvokeAnyNullTimeUnit() 427 e.invokeAny(new ArrayList<Callable<String>>(), in testTimedInvokeAny2() 445 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny3() 461 e.invokeAny(l, LONG_DELAY_MS, MILLISECONDS); in testTimedInvokeAny4() [all …]
|
D | ForkJoinPoolTest.java | 619 e.invokeAny(null); in testInvokeAny1() 632 e.invokeAny(new ArrayList<Callable<String>>()); in testInvokeAny2() 647 e.invokeAny(l); in testInvokeAny3() 664 e.invokeAny(l); in testInvokeAny4() 680 e.invokeAny(l); in testInvokeAny5() 697 String result = e.invokeAny(l); in testInvokeAny6() 786 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny1() 801 e.invokeAny(l, MEDIUM_DELAY_MS, null); in testTimedInvokeAnyNullTimeUnit() 814 e.invokeAny(new ArrayList<Callable<String>>(), in testTimedInvokeAny2() 832 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny3() [all …]
|
D | ScheduledExecutorTest.java | 872 e.invokeAny(null); in testInvokeAny1() 885 e.invokeAny(new ArrayList<Callable<String>>()); in testInvokeAny2() 902 e.invokeAny(l); in testInvokeAny3() 918 e.invokeAny(l); in testInvokeAny4() 935 String result = e.invokeAny(l); in testInvokeAny5() 1022 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny1() 1037 e.invokeAny(l, MEDIUM_DELAY_MS, null); in testTimedInvokeAnyNullTimeUnit() 1050 e.invokeAny(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny2() 1067 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny3() 1084 e.invokeAny(l, LONG_DELAY_MS, MILLISECONDS); in testTimedInvokeAny4() [all …]
|
D | ScheduledExecutorSubclassTest.java | 923 e.invokeAny(null); in testInvokeAny1() 936 e.invokeAny(new ArrayList<Callable<String>>()); in testInvokeAny2() 953 e.invokeAny(l); in testInvokeAny3() 969 e.invokeAny(l); in testInvokeAny4() 986 String result = e.invokeAny(l); in testInvokeAny5() 1073 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny1() 1088 e.invokeAny(l, MEDIUM_DELAY_MS, null); in testTimedInvokeAnyNullTimeUnit() 1101 e.invokeAny(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny2() 1118 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny3() 1135 e.invokeAny(l, LONG_DELAY_MS, MILLISECONDS); in testTimedInvokeAny4() [all …]
|
D | ThreadPoolExecutorTest.java | 1489 e.invokeAny(null); in testInvokeAny1() 1505 e.invokeAny(new ArrayList<Callable<String>>()); in testInvokeAny2() 1525 e.invokeAny(l); in testInvokeAny3() 1544 e.invokeAny(l); in testInvokeAny4() 1564 String result = e.invokeAny(l); in testInvokeAny5() 1669 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny1() 1687 e.invokeAny(l, MEDIUM_DELAY_MS, null); in testTimedInvokeAnyNullTimeUnit() 1703 e.invokeAny(new ArrayList<Callable<String>>(), in testTimedInvokeAny2() 1724 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny3() 1744 e.invokeAny(l, LONG_DELAY_MS, MILLISECONDS); in testTimedInvokeAny4() [all …]
|
D | ThreadPoolExecutorSubclassTest.java | 1482 e.invokeAny(null); in testInvokeAny1() 1498 e.invokeAny(new ArrayList<Callable<String>>()); in testInvokeAny2() 1518 e.invokeAny(l); in testInvokeAny3() 1537 e.invokeAny(l); in testInvokeAny4() 1557 String result = e.invokeAny(l); in testInvokeAny5() 1662 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny1() 1680 e.invokeAny(l, MEDIUM_DELAY_MS, null); in testTimedInvokeAnyNullTimeUnit() 1696 e.invokeAny(new ArrayList<Callable<String>>(), in testTimedInvokeAny2() 1717 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS); in testTimedInvokeAny3() 1737 e.invokeAny(l, LONG_DELAY_MS, MILLISECONDS); in testTimedInvokeAny4() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ExecutorService.java | 331 <T> T invokeAny(Collection<? extends Callable<T>> tasks) in invokeAny() method 357 <T> T invokeAny(Collection<? extends Callable<T>> tasks, in invokeAny() method
|
D | Executors.java | 657 public <T> T invokeAny(Collection<? extends Callable<T>> tasks) 659 return e.invokeAny(tasks); 661 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, 664 return e.invokeAny(tasks, timeout, unit);
|
D | AbstractExecutorService.java | 217 public <T> T invokeAny(Collection<? extends Callable<T>> tasks) in invokeAny() method in AbstractExecutorService 227 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, in invokeAny() method in AbstractExecutorService
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | Executors.java | 244 public <T> T invokeAny( in invokeAny() method in Executors.DelegatedExecutorService 250 public <T> T invokeAny( in invokeAny() method in Executors.DelegatedExecutorService
|