| /libcore/ojluni/src/main/java/java/util/concurrent/ | 
| D | CompletionStage.java | 170     public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn);  in thenApply()187         (Function<? super T,? extends U> fn);  in thenApplyAsync()
 204         (Function<? super T,? extends U> fn,  in thenApplyAsync()
 310          BiFunction<? super T,? super U,? extends V> fn);  in thenCombine()
 330          BiFunction<? super T,? super U,? extends V> fn);  in thenCombineAsync()
 351          BiFunction<? super T,? super U,? extends V> fn,  in thenCombineAsync()
 475          Function<? super T, U> fn);  in applyToEither()
 494          Function<? super T, U> fn);  in applyToEitherAsync()
 514          Function<? super T, U> fn,  in applyToEitherAsync()
 648         (Function<? super T, ? extends CompletionStage<U>> fn);  in thenCompose()
 [all …]
 
 | 
| D | CompletableFuture.java | 597         Function<? super T,? extends V> fn;  field in CompletableFuture.UniApply600                  Function<? super T,? extends V> fn) {  in UniApply()
 670         Consumer<? super T> fn;  field in CompletableFuture.UniAccept
 672                   CompletableFuture<T> src, Consumer<? super T> fn) {  in UniAccept()
 744         Runnable fn;  field in CompletableFuture.UniRun
 746                CompletableFuture<T> src, Runnable fn) {  in UniRun()
 806         BiConsumer<? super T, ? super Throwable> fn;  field in CompletableFuture.UniWhenComplete
 809                         BiConsumer<? super T, ? super Throwable> fn) {  in UniWhenComplete()
 876         BiFunction<? super T, Throwable, ? extends V> fn;  field in CompletableFuture.UniHandle
 879                   BiFunction<? super T, Throwable, ? extends V> fn) {  in UniHandle()
 [all …]
 
 | 
| /libcore/luni/src/test/java/libcore/java/util/concurrent/ | 
| D | CompletionStageTest.java | 100         public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn) {  in thenApply()104         public <U> CompletionStage<U> thenApplyAsync(Function<? super T,? extends U> fn) {  in thenApplyAsync()
 108         public <U> CompletionStage<U> thenApplyAsync(Function<? super T,? extends U> fn,  in thenApplyAsync()
 140                 BiFunction<? super T,? super U,? extends V> fn) {  in thenCombine()
 145                 BiFunction<? super T,? super U,? extends V> fn) {  in thenCombineAsync()
 150                 BiFunction<? super T,? super U,? extends V> fn,  in thenCombineAsync()
 188                 Function<? super T, U> fn) {  in applyToEither()
 193                 Function<? super T, U> fn) {  in applyToEitherAsync()
 198                 Function<? super T, U> fn,  in applyToEitherAsync()
 237                 Function<? super T, ? extends CompletionStage<U>> fn) {  in thenCompose()
 [all …]
 
 | 
| /libcore/ojluni/annotations/mmodule/java/util/concurrent/ | 
| D | CompletableFuture.annotated.java | 70 …CompletableFuture<U> thenApply(java.util.function.Function<? super T,? extends U> fn) { throw new …  in thenApply()72 …etableFuture<U> thenApplyAsync(java.util.function.Function<? super T,? extends U> fn) { throw new …  in thenApplyAsync()
 74 …etableFuture<U> thenApplyAsync(java.util.function.Function<? super T,? extends U> fn, java.util.co…  in thenApplyAsync()
 88 … extends U> other, java.util.function.BiFunction<? super T,? super U,? extends V> fn) { throw new …  in thenCombine()
 90 … extends U> other, java.util.function.BiFunction<? super T,? super U,? extends V> fn) { throw new …  in thenCombineAsync()
 92 … extends U> other, java.util.function.BiFunction<? super T,? super U,? extends V> fn, java.util.co…  in thenCombineAsync()
 106 …CompletionStage<? extends T> other, java.util.function.Function<? super T,U> fn) { throw new Runti…  in applyToEither()
 108 …CompletionStage<? extends T> other, java.util.function.Function<? super T,U> fn) { throw new Runti…  in applyToEitherAsync()
 110 …CompletionStage<? extends T> other, java.util.function.Function<? super T,U> fn, java.util.concurr…  in applyToEitherAsync()
 124 …thenCompose(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U…  in thenCompose()
 [all …]
 
 | 
| /libcore/ojluni/src/main/java/sun/nio/fs/ | 
| D | MimeTypesFileTypeDetector.java | 69         Path fn = path.getFileName();  in implProbeContentType()  local
 | 
| /libcore/ojluni/src/main/java/java/util/concurrent/atomic/ | 
| D | Striped64.java | 230     final void longAccumulate(long x, LongBinaryOperator fn,  in longAccumulate()300     private static long apply(DoubleBinaryOperator fn, long v, double x) {  in apply()
 312     final void doubleAccumulate(double x, DoubleBinaryOperator fn,  in doubleAccumulate()
 
 | 
| /libcore/ojluni/src/main/java/java/lang/ | 
| D | Package.java | 557                 String fn = getSystemPackage0(name);  in getSystemPackage()  local581                                                final String fn)  in defineSystemPackage()
 
 | 
| /libcore/ojluni/src/main/java/java/util/ | 
| D | ArrayPrefixHelpers.java | 142             final BinaryOperator<T> fn;  in compute()  local296             final LongBinaryOperator fn;  in compute()  local
 448             final DoubleBinaryOperator fn;  in compute()  local
 600             final IntBinaryOperator fn;  in compute()  local
 
 | 
| /libcore/ojluni/src/test/java/util/concurrent/tck/ | 
| D | CompletableFutureTest.java | 4726             (Function<? super T,? extends U> fn) {  in thenApplyAsync()4729             (Function<? super T,? extends U> fn,  in thenApplyAsync()
 4734              BiFunction<? super T,? super U,? extends V> fn) {  in thenCombine()
 4738              BiFunction<? super T,? super U,? extends V> fn) {  in thenCombineAsync()
 4742              BiFunction<? super T,? super U,? extends V> fn,  in thenCombineAsync()
 4773              Function<? super T, U> fn) {  in applyToEither()
 4777              Function<? super T, U> fn) {  in applyToEitherAsync()
 4781              Function<? super T, U> fn,  in applyToEitherAsync()
 4811             (Function<? super T, ? extends CompletionStage<U>> fn) {  in thenCompose()
 4814             (Function<? super T, ? extends CompletionStage<U>> fn) {  in thenComposeAsync()
 [all …]
 
 |