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

/libcore/ojluni/src/main/java/java/util/
H A DArraysParallelSortHelpers.java106 public final void onCompletion(CountedCompleter<?> t) { method in class:ArraysParallelSortHelpers.Relay
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCountedCompleter.java47 * to trigger the completion action {@link #onCompletion(CountedCompleter)},
73 * optionally override method {@link #onCompletion(CountedCompleter)}
131 * implementation of method {@code onCompletion} is not overridden).
191 * in this tree implements an {@link #onCompletion(CountedCompleter)} method,
271 * in method {@link #onCompletion(CountedCompleter)}. As illustrated in the following
275 * sibling, so that it can be accessed in method {@code onCompletion}.
312 * public void onCompletion(CountedCompleter<?> caller) {
330 * Here, method {@code onCompletion} takes a form common to many
341 * actions inside {@code onCompletion} occur (once) upon completion of
346 * <p><b>Completion Traversals</b>. If using {@code onCompletion} t
468 public void onCompletion(CountedCompleter<?> caller) { method in class:CountedCompleter
[all...]
/libcore/ojluni/src/main/java/java/util/stream/
H A DAbstractTask.java44 * Internal node tasks will likely override the {@code onCompletion} method from
55 * {@code Spliterator}, and override {@code onCompletion()} to merge the results
64 * public void onCompletion(CountedCompleter caller) {
325 * {@code super.onCompletion} as the last thing they do if they want these
329 public void onCompletion(CountedCompleter<?> caller) { method in class:AbstractTask
H A DFindOps.java302 public void onCompletion(CountedCompleter<?> caller) { method in class:FindOps.FindTask
314 super.onCompletion(caller);
H A DForEachOps.java469 * onCompletion. Therefore there is no data race within the if
487 public void onCompletion(CountedCompleter<?> caller) { method in class:ForEachOps.ForEachOrderedTask
H A DReduceOps.java751 public void onCompletion(CountedCompleter<?> caller) { method in class:ReduceOps.ReduceTask
758 super.onCompletion(caller);
H A DSliceOps.java622 public final void onCompletion(CountedCompleter<?> caller) { method in class:SliceOps.SliceTask
646 super.onCompletion(caller);
H A DNodes.java2187 public void onCompletion(CountedCompleter<?> caller) { method in class:Nodes.CollectorTask
2190 super.onCompletion(caller);
/libcore/jsr166-tests/src/test/java/jsr166/
H A DForkJoinPool8Test.java883 f.onCompletion(f);
895 public final void onCompletion(CountedCompleter caller) { method in class:ForkJoinPool8Test.LCCF
908 public final void onCompletion(CountedCompleter caller) { method in class:ForkJoinPool8Test.RCCF
937 f.onCompletion(f);
949 public final void onCompletion(CountedCompleter caller) { method in class:ForkJoinPool8Test.LFCCF
962 public final void onCompletion(CountedCompleter caller) { method in class:ForkJoinPool8Test.RFCCF
H A DCountedCompleterTest.java231 public void onCompletion(CountedCompleter caller) { method in class:CountedCompleterTest.CheckedCC
233 super.onCompletion(caller);
449 * which case causes completion, without invoking onCompletion
552 public final void onCompletion(CountedCompleter caller) { method in class:CountedCompleterTest.LCCF
553 super.onCompletion(caller);
566 public final void onCompletion(CountedCompleter caller) { method in class:CountedCompleterTest.RCCF
567 super.onCompletion(caller);
603 public final void onCompletion(CountedCompleter caller) { method in class:CountedCompleterTest.LFCCF
604 super.onCompletion(caller);
617 public final void onCompletion(CountedComplete method in class:CountedCompleterTest.RFCCF
[all...]

Completed in 391 milliseconds