Home
last modified time | relevance | path

Searched refs:andThen (Results 1 – 21 of 21) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/function/
DConsumerTest.java30 sweet.andThen(dude).accept(sb); in testAndThen()
34 dude.andThen(sweet).accept(sb); in testAndThen()
41 one.andThen(null); in testAndThen_null()
DBiConsumerTest.java30 one.andThen(two).accept("z", sb); in testAndThen()
34 two.andThen(one).accept("z", sb); in testAndThen()
41 one.andThen(null); in testAndThen_null()
DBiFunctionTest.java29 assertEquals("4", add.andThen(toString).apply(2, 2)); in testAndThen()
35 add.andThen(null); in testAndThen_nullFunction()
43 assertEquals("ok", toNull.andThen(assertNull).apply(2, 2)); in testAndThen_nullResult()
DDoubleConsumerTest.java30 one.andThen(two).accept(1.0d); in testAndThen()
37 one.andThen(null); in testAndThen_null()
DIntConsumerTest.java30 one.andThen(two).accept(1); in testAndThen()
37 one.andThen(null); in testAndThen_null()
DLongConsumerTest.java30 one.andThen(two).accept(1L); in testAndThen()
37 one.andThen(null); in testAndThen_null()
DIntUnaryOperatorTest.java47 assertEquals(12, plusOne.andThen(twice).applyAsInt(5)); in testAndThen()
53 plusOne.andThen(null); in testAndThen_null()
DLongUnaryOperatorTest.java47 assertEquals(12, plusOne.andThen(twice).applyAsLong(5L)); in testAndThen()
53 plusOne.andThen(null); in testAndThen_null()
DFunctionTest.java48 assertEquals(12.0d, plusOne.andThen(twice).apply(5.0d)); in testAndThen()
54 plusOne.andThen(null); in testAndThen_null()
DDoubleUnaryOperatorTest.java53 assertEquals(12.0d, plusOne.andThen(twice).applyAsDouble(5.0d)); in testAndThen()
59 plusOne.andThen(null); in testAndThen_null()
/libcore/ojluni/src/main/java/java/util/function/
DLongConsumer.java63 default LongConsumer andThen(LongConsumer after) { in andThen() method
DDoubleConsumer.java63 default DoubleConsumer andThen(DoubleConsumer after) { in andThen() method
DIntConsumer.java63 default IntConsumer andThen(IntConsumer after) { in andThen() method
DConsumer.java63 default Consumer<T> andThen(Consumer<? super T> after) { in andThen() method
DBiConsumer.java67 default BiConsumer<T, U> andThen(BiConsumer<? super T, ? super U> after) { in andThen() method
DIntUnaryOperator.java82 default IntUnaryOperator andThen(IntUnaryOperator after) { in andThen() method
DDoubleUnaryOperator.java82 default DoubleUnaryOperator andThen(DoubleUnaryOperator after) { in andThen() method
DLongUnaryOperator.java82 default LongUnaryOperator andThen(LongUnaryOperator after) { in andThen() method
DBiFunction.java68 default <V> BiFunction<T, U, V> andThen(Function<? super R, ? extends V> after) { in andThen() method
DFunction.java86 default <V> Function<T, V> andThen(Function<? super R, ? extends V> after) { in andThen() method
/libcore/ojluni/src/main/java/java/util/stream/
DCollectors.java393 downstream.finisher().andThen(finisher),