Searched defs:fn (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCompletionStage.java165 * @param fn the function to use to compute the value of the
170 public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn); argument
181 * @param fn the function to use to compute the value of the
187 (Function<? super T,? extends U> fn);
197 * @param fn the function to use to compute the value of the
204 (Function<? super T,? extends U> fn,
302 * @param fn the function to use to compute the value of the
310 BiFunction<? super T,? super U,? extends V> fn);
322 * @param fn the function to use to compute the value of the
330 BiFunction<? super T,? super U,? extends V> fn);
186 thenApplyAsync(Function<? super T,? extends U> fn) argument
203 thenApplyAsync(Function<? super T,? extends U> fn, Executor executor) argument
308 thenCombine(CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn) argument
328 thenCombineAsync(CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn) argument
349 thenCombineAsync(CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn, Executor executor) argument
473 applyToEither(CompletionStage<? extends T> other, Function<? super T, U> fn) argument
492 applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T, U> fn) argument
512 applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T, U> fn, Executor executor) argument
647 thenCompose(Function<? super T, ? extends CompletionStage<U>> fn) argument
672 thenComposeAsync(Function<? super T, ? extends CompletionStage<U>> fn) argument
697 thenComposeAsync(Function<? super T, ? extends CompletionStage<U>> fn, Executor executor) argument
716 handle(BiFunction<? super T, Throwable, ? extends U> fn) argument
735 handleAsync(BiFunction<? super T, Throwable, ? extends U> fn) argument
755 handleAsync(BiFunction<? super T, Throwable, ? extends U> fn, Executor executor) argument
850 exceptionally(Function<Throwable, ? extends T> fn) argument
[all...]
H A DCompletableFuture.java576 Function<? super T,? extends V> fn; field in class:CompletableFuture.UniApply
579 Function<? super T,? extends V> fn) {
580 super(executor, dep, src); this.fn = fn;
585 !d.uniApply(a = src, fn, mode > 0 ? null : this))
587 dep = null; src = null; fn = null;
632 Consumer<? super T> fn; field in class:CompletableFuture.UniAccept
634 CompletableFuture<T> src, Consumer<? super T> fn) {
635 super(executor, dep, src); this.fn = fn;
577 UniApply(Executor executor, CompletableFuture<V> dep, CompletableFuture<T> src, Function<? super T,? extends V> fn) argument
633 UniAccept(Executor executor, CompletableFuture<Void> dep, CompletableFuture<T> src, Consumer<? super T> fn) argument
687 Runnable fn; field in class:CompletableFuture.UniRun
688 UniRun(Executor executor, CompletableFuture<Void> dep, CompletableFuture<T> src, Runnable fn) argument
735 BiConsumer<? super T, ? super Throwable> fn; field in class:CompletableFuture.UniWhenComplete
736 UniWhenComplete(Executor executor, CompletableFuture<T> dep, CompletableFuture<T> src, BiConsumer<? super T, ? super Throwable> fn) argument
798 BiFunction<? super T, Throwable, ? extends V> fn; field in class:CompletableFuture.UniHandle
799 UniHandle(Executor executor, CompletableFuture<V> dep, CompletableFuture<T> src, BiFunction<? super T, Throwable, ? extends V> fn) argument
854 Function<? super Throwable, ? extends T> fn; field in class:CompletableFuture.UniExceptionally
855 UniExceptionally(CompletableFuture<T> dep, CompletableFuture<T> src, Function<? super Throwable, ? extends T> fn) argument
951 Function<? super T, ? extends CompletionStage<V>> fn; field in class:CompletableFuture.UniCompose
952 UniCompose(Executor executor, CompletableFuture<V> dep, CompletableFuture<T> src, Function<? super T, ? extends CompletionStage<V>> fn) argument
1094 BiFunction<? super T,? super U,? extends V> fn; field in class:CompletableFuture.BiApply
1095 BiApply(Executor executor, CompletableFuture<V> dep, CompletableFuture<T> src, CompletableFuture<U> snd, BiFunction<? super T,? super U,? extends V> fn) argument
1165 BiConsumer<? super T,? super U> fn; field in class:CompletableFuture.BiAccept
1166 BiAccept(Executor executor, CompletableFuture<Void> dep, CompletableFuture<T> src, CompletableFuture<U> snd, BiConsumer<? super T,? super U> fn) argument
1237 Runnable fn; field in class:CompletableFuture.BiRun
1238 BiRun(Executor executor, CompletableFuture<Void> dep, CompletableFuture<T> src, CompletableFuture<U> snd, Runnable fn) argument
1373 Function<? super T,? extends V> fn; field in class:CompletableFuture.OrApply
1374 OrApply(Executor executor, CompletableFuture<V> dep, CompletableFuture<T> src, CompletableFuture<U> snd, Function<? super T,? extends V> fn) argument
1437 Consumer<? super T> fn; field in class:CompletableFuture.OrAccept
1438 OrAccept(Executor executor, CompletableFuture<Void> dep, CompletableFuture<T> src, CompletableFuture<U> snd, Consumer<? super T> fn) argument
1501 Runnable fn; field in class:CompletableFuture.OrRun
1502 OrRun(Executor executor, CompletableFuture<Void> dep, CompletableFuture<T> src, CompletableFuture<U> snd, Runnable fn) argument
1610 CompletableFuture<T> dep; Supplier<? extends T> fn; field in class:CompletableFuture.AsyncSupply
1611 AsyncSupply(CompletableFuture<T> dep, Supplier<? extends T> fn) argument
1646 CompletableFuture<Void> dep; Runnable fn; field in class:CompletableFuture.AsyncRun
1647 AsyncRun(CompletableFuture<Void> dep, Runnable fn) argument
2007 thenApply( Function<? super T,? extends U> fn) argument
2012 thenApplyAsync( Function<? super T,? extends U> fn) argument
2017 thenApplyAsync( Function<? super T,? extends U> fn, Executor executor) argument
2048 thenCombine( CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn) argument
2054 thenCombineAsync( CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn) argument
2060 thenCombineAsync( CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn, Executor executor) argument
2100 applyToEither( CompletionStage<? extends T> other, Function<? super T, U> fn) argument
2105 applyToEitherAsync( CompletionStage<? extends T> other, Function<? super T, U> fn) argument
2110 applyToEitherAsync( CompletionStage<? extends T> other, Function<? super T, U> fn, Executor executor) argument
2148 thenCompose( Function<? super T, ? extends CompletionStage<U>> fn) argument
2153 thenComposeAsync( Function<? super T, ? extends CompletionStage<U>> fn) argument
2158 thenComposeAsync( Function<? super T, ? extends CompletionStage<U>> fn, Executor executor) argument
2179 handle( BiFunction<? super T, Throwable, ? extends U> fn) argument
2184 handleAsync( BiFunction<? super T, Throwable, ? extends U> fn) argument
2189 handleAsync( BiFunction<? super T, Throwable, ? extends U> fn, Executor executor) argument
2220 exceptionally( Function<Throwable, ? extends T> fn) argument
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DStriped64.java217 * @param fn the update function, or null for add (this convention
221 final void longAccumulate(long x, LongBinaryOperator fn, argument
256 (fn == null) ? v + x : fn.applyAsLong(v, x)))
288 (fn == null) ? v + x : fn.applyAsLong(v, x)))
293 private static long apply(DoubleBinaryOperator fn, long v, double x) { argument
295 d = (fn == null) ? d + x : fn.applyAsDouble(d, x);
305 final void doubleAccumulate(double x, DoubleBinaryOperator fn, argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DPackage.java561 String fn = getSystemPackage0(name);
562 if (fn != null) {
563 pkg = defineSystemPackage(name, fn);
585 final String fn)
591 URL url = urls.get(fn);
594 File file = new File(fn);
600 urls.put(fn, url);
603 mans.put(fn, loadManifest(fn));
610 Manifest man = mans.get(fn);
584 defineSystemPackage(final String iname, final String fn) argument
626 loadManifest(String fn) argument
[all...]

Completed in 187 milliseconds