Home
last modified time | relevance | path

Searched defs:newTaskFor (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DExecutorCompletionService.java95 private RunnableFuture<V> newTaskFor(Callable<V> task) { in newTaskFor() method in ExecutorCompletionService
102 private RunnableFuture<V> newTaskFor(Runnable task, V result) { in newTaskFor() method in ExecutorCompletionService
DAbstractExecutorService.java56 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) { in newTaskFor() method in AbstractExecutorService
70 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) { in newTaskFor() method in AbstractExecutorService
DForkJoinPool.java3186 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) { in newTaskFor() method in ForkJoinPool
3190 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) { in newTaskFor() method in ForkJoinPool
/libcore/jsr166-tests/src/test/java/jsr166/
DThreadPoolExecutorSubclassTest.java115 protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) { in newTaskFor() method in ThreadPoolExecutorSubclassTest.CustomTPE
118 protected <V> RunnableFuture<V> newTaskFor(Runnable r, V v) { in newTaskFor() method in ThreadPoolExecutorSubclassTest.CustomTPE