Home
last modified time | relevance | path

Searched refs:newTaskFor (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DExecutorCompletionService.java126 private RunnableFuture<V> newTaskFor(Callable<V> task) { in newTaskFor() method in ExecutorCompletionService
130 return aes.newTaskFor(task); in newTaskFor()
133 private RunnableFuture<V> newTaskFor(Runnable task, V result) { in newTaskFor() method in ExecutorCompletionService
137 return aes.newTaskFor(task, result); in newTaskFor()
182 RunnableFuture<V> f = newTaskFor(task); in submit()
189 RunnableFuture<V> f = newTaskFor(task, result); in submit()
DAbstractExecutorService.java92 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) { in newTaskFor() method in AbstractExecutorService
107 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) { in newTaskFor() method in AbstractExecutorService
117 RunnableFuture<Void> ftask = newTaskFor(task, null); in submit()
128 RunnableFuture<T> ftask = newTaskFor(task, result); in submit()
139 RunnableFuture<T> ftask = newTaskFor(task); in submit()
240 RunnableFuture<T> f = newTaskFor(t); in invokeAll()
270 futures.add(newTaskFor(t)); in invokeAll()
DForkJoinPool.java3454 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) { in newTaskFor() method in ForkJoinPool
3458 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) { in newTaskFor() method in ForkJoinPool
/libcore/jsr166-tests/src/test/java/jsr166/
DExecutorCompletionServiceTest.java171 protected <T> RunnableFuture<T> newTaskFor(Callable<T> c) { in testNewTaskForCallable()
202 protected <T> RunnableFuture<T> newTaskFor(Runnable t, T r) { in testNewTaskForRunnable()
DThreadPoolExecutorSubclassTest.java153 protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) { in newTaskFor() method in ThreadPoolExecutorSubclassTest.CustomTPE
156 protected <V> RunnableFuture<V> newTaskFor(Runnable r, V v) { in newTaskFor() method in ThreadPoolExecutorSubclassTest.CustomTPE