Searched defs:inputShape (Results 1 - 21 of 21) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DTerminalOp.java53 default StreamShape inputShape() { return StreamShape.REFERENCE; } method in interface:TerminalOp
H A DFindOps.java145 public StreamShape inputShape() { method in class:FindOps.FindOp
H A DForEachOps.java199 public StreamShape inputShape() { method in class:ForEachOps.ForEachOp.OfInt
220 public StreamShape inputShape() { method in class:ForEachOps.ForEachOp.OfLong
241 public StreamShape inputShape() { method in class:ForEachOps.ForEachOp.OfDouble
H A DMatchOps.java197 private final StreamShape inputShape; field in class:MatchOps.MatchOp
212 this.inputShape = shape;
223 public StreamShape inputShape() { method in class:MatchOps.MatchOp
224 return inputShape;
H A DReduceOps.java686 private final StreamShape inputShape; field in class:ReduceOps.ReduceOp
695 inputShape = shape;
701 public StreamShape inputShape() { method in class:ReduceOps.ReduceOp
702 return inputShape;
H A DDoublePipeline.java594 * @param inputShape the stream shape for the upstream pipeline stage
598 StreamShape inputShape,
601 assert upstream.getOutputShape() == inputShape;
623 * @param inputShape the stream shape for the upstream pipeline stage
627 StreamShape inputShape,
630 assert upstream.getOutputShape() == inputShape;
597 StatelessOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
626 StatefulOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
H A DIntPipeline.java589 * @param inputShape The stream shape for the upstream pipeline stage
593 StreamShape inputShape,
596 assert upstream.getOutputShape() == inputShape;
617 * @param inputShape The stream shape for the upstream pipeline stage
621 StreamShape inputShape,
624 assert upstream.getOutputShape() == inputShape;
592 StatelessOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
620 StatefulOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
H A DLongPipeline.java569 * @param inputShape The stream shape for the upstream pipeline stage
573 StreamShape inputShape,
576 assert upstream.getOutputShape() == inputShape;
597 * @param inputShape The stream shape for the upstream pipeline stage
602 StreamShape inputShape,
605 assert upstream.getOutputShape() == inputShape;
572 StatelessOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
601 StatefulOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
H A DReferencePipeline.java616 * @param inputShape The stream shape for the upstream pipeline stage
620 StreamShape inputShape,
623 assert upstream.getOutputShape() == inputShape;
646 * @param inputShape The stream shape for the upstream pipeline stage
650 StreamShape inputShape,
653 assert upstream.getOutputShape() == inputShape;
619 StatelessOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
649 StatefulOp(AbstractPipeline<?, E_IN, ?> upstream, StreamShape inputShape, int opFlags) argument
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
H A DFlagDeclaringOp.java48 public StreamShape inputShape() { method in class:FlagDeclaringOp
H A DStatelessTestOp.java36 return new ReferencePipeline.StatelessOp<Object, T>(upstream, op.inputShape(), flags) {
42 return new IntPipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
48 return new LongPipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
55 return new DoublePipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
65 default StreamShape inputShape() { return StreamShape.REFERENCE; } method in interface:StatelessTestOp
H A DStatefulTestOp.java38 return new ReferencePipeline.StatefulOp<Object, T>(upstream, op.inputShape(), op.opGetFlags()) {
58 return new IntPipeline.StatefulOp<Object>(upstream, op.inputShape(), op.opGetFlags()) {
78 return new LongPipeline.StatefulOp<Object>(upstream, op.inputShape(), op.opGetFlags()) {
98 return new DoublePipeline.StatefulOp<Object>(upstream, op.inputShape(), op.opGetFlags()) {
121 default StreamShape inputShape() { return StreamShape.REFERENCE; } method in interface:StatefulTestOp
H A DTestFlagExpectedOp.java98 public StreamShape inputShape() { method in class:TestFlagExpectedOp
H A DCollectorOps.java41 private final StreamShape inputShape; field in class:CollectorOps.StatefulCollector
43 public StatefulCollector(int opFlags, StreamShape inputShape) { argument
45 this.inputShape = inputShape;
49 public StreamShape inputShape() { method in class:CollectorOps.StatefulCollector
50 return inputShape;
55 return inputShape;
H A DOpTestCase.java663 public StreamShape inputShape() { method in class:OpTestCase.ShortCircuitOp
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
H A DFlagDeclaringOp.java51 public StreamShape inputShape() { method in class:FlagDeclaringOp
H A DStatelessTestOp.java44 return new ReferencePipeline.StatelessOp<Object, T>(upstream, op.inputShape(), flags) {
51 return new IntPipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
58 return new LongPipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
65 return new DoublePipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
75 default StreamShape inputShape() { return StreamShape.REFERENCE; } method in interface:StatelessTestOp
H A DTestFlagExpectedOp.java99 public StreamShape inputShape() { method in class:TestFlagExpectedOp
H A DCollectorOps.java42 private final StreamShape inputShape; field in class:CollectorOps.StatefulCollector
44 public StatefulCollector(int opFlags, StreamShape inputShape) { argument
46 this.inputShape = inputShape;
50 public StreamShape inputShape() { method in class:CollectorOps.StatefulCollector
51 return inputShape;
56 return inputShape;
H A DStatefulTestOp.java39 return new ReferencePipeline.StatefulOp<Object, T>(upstream, op.inputShape(), op.opGetFlags()) {
59 return new IntPipeline.StatefulOp<Object>(upstream, op.inputShape(), op.opGetFlags()) {
79 return new LongPipeline.StatefulOp<Object>(upstream, op.inputShape(), op.opGetFlags()) {
99 return new DoublePipeline.StatefulOp<Object>(upstream, op.inputShape(), op.opGetFlags()) {
122 default StreamShape inputShape() { return StreamShape.REFERENCE; } method in interface:StatefulTestOp
H A DOpTestCase.java664 public StreamShape inputShape() { method in class:OpTestCase.ShortCircuitOp

Completed in 133 milliseconds