/libcore/ojluni/src/main/java/java/util/function/ |
H A D | DoubleFunction.java | 33 * whose functional method is {@link #apply(double)}. 49 R apply(double value); method in interface:DoubleFunction
|
H A D | IntFunction.java | 33 * whose functional method is {@link #apply(int)}. 49 R apply(int value); method in interface:IntFunction
|
H A D | LongFunction.java | 33 * whose functional method is {@link #apply(long)}. 49 R apply(long value); method in interface:LongFunction
|
H A D | BiFunction.java | 34 * whose functional method is {@link #apply(Object, Object)}. 53 R apply(T t, U u); method in interface:BiFunction 63 * @param after the function to apply after this function is applied 70 return (T t, U u) -> after.apply(apply(t, u));
|
H A D | Function.java | 33 * whose functional method is {@link #apply(Object)}. 49 R apply(T t); method in interface:Function 59 * @param before the function to apply before this function is applied 68 return (V v) -> apply(before.apply(v)); 79 * @param after the function to apply after this function is applied 88 return (T t) -> after.apply(apply(t));
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
H A D | StreamLinkTest.java | 49 private <S> Function<S, S> apply(int n, Function<S, S> f) { method in class:StreamLinkTest 52 s = f.apply(s); 67 stream(apply(n, (Stream<Integer> s) -> s.map(e -> (Integer) (e + 1)))). 80 stream(apply(n, (IntStream s) -> s.map(e -> e + 1))). 93 stream(apply(n, (LongStream s) -> s.map(e -> e + 1L))). 106 stream(apply(n, (DoubleStream s) -> s.map(e -> e + 1.0))).
|
/libcore/benchmarks/src/benchmarks/regression/ |
H A D | URLConnectionBenchmark.java | 56 responseHeaders.apply(response); 108 void apply(MockResponse response) { method in class:URLConnectionBenchmark.ResponseHeaders
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
H A D | Striped64.java | 264 private static long apply(DoubleBinaryOperator fn, long v, double x) { method in class:Striped64 310 else if (a.cas(v = a.value, apply(fn, v, x))) 341 else if (casBase(v = base, apply(fn, v, x)))
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
H A D | ConcurrentHashMap8Test.java | 577 public Map.Entry<Long,Long> apply(Map.Entry<Long,Long> x, Map.Entry<Long,Long> y) { method in class:ConcurrentHashMap8Test.AddKeys
|
H A D | CompletableFutureTest.java | 423 public Integer apply(Integer x) { method in class:CompletableFutureTest.IncFunction 451 public Integer apply(Integer x, Integer y) { method in class:CompletableFutureTest.SubtractFunction 500 public Integer apply(Integer x) { method in class:CompletableFutureTest.FailingFunction 511 public Integer apply(Integer x, Integer y) { method in class:CompletableFutureTest.FailingBiFunction 530 public CompletableFuture<Integer> apply(Integer x) { method in class:CompletableFutureTest.CompletableFutureInc 543 public CompletableFuture<Integer> apply(Integer x) { method in class:CompletableFutureTest.FailingCompletableFutureFunction 3681 CompletableFuture<?> dep = fun.apply(src); 3690 CompletableFuture<?> dep = fun.apply(src); 3705 CompletableFuture<?> dep = fun.apply(src); 3715 CompletableFuture<?> dep = fun.apply(sr [all...] |
/libcore/support/src/test/java/tests/resources/ |
H A D | junit4-4.3.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |