HomeSort by relevance Sort by last modified time
    Searched refs:inputShape (Results 1 - 22 of 22) sorted by null

  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
CollectorOps.java 41 private final StreamShape inputShape;
43 public StatefulCollector(int opFlags, StreamShape inputShape) {
45 this.inputShape = inputShape;
49 public StreamShape inputShape() {
50 return inputShape;
55 return inputShape;
StatelessTestOp.java 36 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; }
FlagDeclaringOp.java 48 public StreamShape inputShape() {
StatefulTestOp.java 38 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; }
TestFlagExpectedOp.java 98 public StreamShape inputShape() {
OpTestCase.java 663 public StreamShape inputShape() {
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
CollectorOps.java 42 private final StreamShape inputShape;
44 public StatefulCollector(int opFlags, StreamShape inputShape) {
46 this.inputShape = inputShape;
50 public StreamShape inputShape() {
51 return inputShape;
56 return inputShape;
StatelessTestOp.java 44 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; }
FlagDeclaringOp.java 51 public StreamShape inputShape() {
StatefulTestOp.java 39 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; }
TestFlagExpectedOp.java 99 public StreamShape inputShape() {
OpTestCase.java 664 public StreamShape inputShape() {
  /libcore/ojluni/src/main/java/java/util/stream/
TerminalOp.java 53 default StreamShape inputShape() { return StreamShape.REFERENCE; }
MatchOps.java 197 private final StreamShape inputShape;
212 this.inputShape = shape;
223 public StreamShape inputShape() {
224 return inputShape;
ForEachOps.java 199 public StreamShape inputShape() {
220 public StreamShape inputShape() {
241 public StreamShape inputShape() {
DoublePipeline.java 594 * @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;
LongPipeline.java 569 * @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;
IntPipeline.java 589 * @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;
ReduceOps.java 686 private final StreamShape inputShape;
695 inputShape = shape;
701 public StreamShape inputShape() {
702 return inputShape;
ReferencePipeline.java 615 * @param inputShape The stream shape for the upstream pipeline stage
619 StreamShape inputShape,
622 assert upstream.getOutputShape() == inputShape;
645 * @param inputShape The stream shape for the upstream pipeline stage
649 StreamShape inputShape,
652 assert upstream.getOutputShape() == inputShape;
FindOps.java 145 public StreamShape inputShape() {
AbstractPipeline.java 228 assert getOutputShape() == terminalOp.inputShape();

Completed in 100 milliseconds