Searched defs:isDone (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DFuture.java109 * <p>After this method returns, subsequent calls to {@link #isDone} will
139 boolean isDone(); method in interface:Future
H A DFutureTask.java161 public boolean isDone() { method in class:FutureTask
212 * {@code isDone} (whether normally or via cancellation). The
415 // We may have already promised (via isDone) that we are done
H A DForkJoinTask.java134 * of detail: {@link #isDone} is true if a task completed in any way
684 * related methods, or a call to {@link #isDone} returning {@code
699 * Returns the result of the computation when it {@link #isDone is
732 * Forks the given tasks, returning when {@code isDone} holds for
758 * Forks the given tasks, returning when {@code isDone} holds for
801 * {@code isDone} holds for each task or an (unchecked) exception
860 * {@link #isDone}, and {@code cancel} will return {@code true}
883 public final boolean isDone() { method in class:ForkJoinTask
1107 * <p>Upon completion of this method, {@code isDone()} reports
H A DCompletableFuture.java1905 public boolean isDone() { method in class:CompletableFuture
2704 if (f != null && !f.isDone())
2725 if (ex == null && f != null && !f.isDone())
2756 @Override public boolean isDone() { method in class:CompletableFuture.MinimalStage
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DCompletedFuture.java88 public boolean isDone() { method in class:CompletedFuture
H A DPendingFuture.java221 public boolean isDone() { method in class:PendingFuture
/libcore/ojluni/src/main/java/sun/util/locale/
H A DStringTokenIterator.java70 public boolean isDone() { method in class:StringTokenIterator
/libcore/jsr166-tests/src/test/java/jsr166/
H A DScheduledExecutorSubclassTest.java69 public boolean isDone() { return task.isDone(); } method in class:ScheduledExecutorSubclassTest.CustomTask
780 assertFalse(task.isDone());
846 assertTrue(effectivePeriodicPolicy ^ periodic.isDone());
850 assertTrue(effectiveDelayedPolicy ^ delayed.isDone());
872 assertTrue(periodic.isDone());
900 assertTrue(future.isDone());
1275 assertTrue(future.isDone());
H A DThreadPoolExecutorSubclassTest.java71 public boolean isDone() { method in class:ThreadPoolExecutorSubclassTest.CustomTask
1453 assertTrue(future.isDone());
1902 assertTrue(future.isDone());
2035 assertTrue(future.isDone());
H A DJSR166TestCase.java1637 boolean isDone(); method in interface:JSR166TestCase.TrackedRunnable
1643 public boolean isDone() { return done; }

Completed in 210 milliseconds