Searched defs:apply (Results 1 - 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/java/util/function/
H A DDoubleFunction.java33 * whose functional method is {@link #apply(double)}.
49 R apply(double value); method in interface:DoubleFunction
H A DIntFunction.java33 * whose functional method is {@link #apply(int)}.
49 R apply(int value); method in interface:IntFunction
H A DLongFunction.java33 * whose functional method is {@link #apply(long)}.
49 R apply(long value); method in interface:LongFunction
H A DBiFunction.java34 * 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 DFunction.java33 * 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 DStreamLinkTest.java49 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 DURLConnectionBenchmark.java56 responseHeaders.apply(response);
108 void apply(MockResponse response) { method in class:URLConnectionBenchmark.ResponseHeaders
/libcore/dalvik/test-rules/src/main/java/libcore/dalvik/system/
H A DCloseGuardSupport.java99 public Statement apply(Statement base, Description description) { method in class:CloseGuardSupport.FailTestWhenResourcesNotClosedRule
/libcore/test-rules/src/main/java/libcore/junit/util/
H A DResourceLeakageDetector.java135 public Statement apply(Statement base, Description description) { method in class:ResourceLeakageDetector.LeakageDetectorRule
143 return leakageDetectorRule.apply(base, description);
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DStriped64.java293 private static long apply(DoubleBinaryOperator fn, long v, double x) { method in class:Striped64
339 else if (a.cas(v = a.value, apply(fn, v, x)))
370 else if (casBase(v = base, apply(fn, v, x)))
/libcore/luni/src/test/java/libcore/java/nio/file/
H A DFilesSetup.java173 public Statement apply(Statement statement, Description description) { method in class:FilesSetup
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DProxy.java562 public Object apply(ClassLoader classLoader, Class<?>[] interfaces) { method in class:Proxy.KeyFactory
612 public Class<?> apply(ClassLoader loader, Class<?>[] interfaces) { method in class:Proxy.ProxyClassFactory
/libcore/jsr166-tests/src/test/java/jsr166/
H A DConcurrentHashMap8Test.java577 public Map.Entry<Long,Long> apply(Map.Entry<Long,Long> x, Map.Entry<Long,Long> y) { method in class:ConcurrentHashMap8Test.AddKeys
H A DCompletableFutureTest.java423 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 Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 884 milliseconds