Home
last modified time | relevance | path

Searched refs:shape (Results 1 – 17 of 17) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DTestFlagExpectedOp.java33 StreamShape shape = StreamShape.REFERENCE; field in TestFlagExpectedOp.Builder
58 Builder<T> shape(StreamShape shape) { in shape() argument
59 this.shape = shape; in shape()
64 return new TestFlagExpectedOp<>(flags, known, preserve, notKnown, shape); in build()
71 final StreamShape shape; field in TestFlagExpectedOp
84 StreamShape shape) { in TestFlagExpectedOp() argument
89 this.shape = shape; in TestFlagExpectedOp()
94 return shape; in outputShape()
99 return shape; in inputShape()
DFlagDeclaringOp.java31 private final StreamShape shape; field in FlagDeclaringOp
37 public FlagDeclaringOp(int flags, StreamShape shape) { in FlagDeclaringOp() argument
39 this.shape = shape; in FlagDeclaringOp()
44 return shape; in outputShape()
49 return shape; in inputShape()
DOpTestCase.java251 final StreamShape shape; field in OpTestCase.ExerciseDataStreamBuilder
275 this.shape = ((AbstractPipeline<?, U, ?>) m.apply(data.stream())).getOutputShape(); in ExerciseDataStreamBuilder()
279 testSet.addAll(testScenarios.get(shape)); in ExerciseDataStreamBuilder()
334 if (ts.getShape() == shape) { in without()
354 if (ts.getShape() == shape) { in with()
449 default R run(Function<S_OUT, R> terminalF, S_OUT source, StreamShape shape) { in run() argument
460 public Object run(Function terminalF, BaseStream source, StreamShape shape) { in SINGLE_SEQUENTIAL_SHORT_CIRCUIT() argument
461 source = (BaseStream) chain(source, new ShortCircuitOp(shape)); in SINGLE_SEQUENTIAL_SHORT_CIRCUIT()
472 public Object run(Function terminalF, BaseStream source, StreamShape shape) { in ALL_SEQUENTIAL_SHORT_CIRCUIT() argument
473 source = (BaseStream) chain(source, new ShortCircuitOp(shape)); in ALL_SEQUENTIAL_SHORT_CIRCUIT()
[all …]
DCollectorOps.java81 protected TestParallelSizedOp(StreamShape shape) { in TestParallelSizedOp() argument
82 super(0, shape); in TestParallelSizedOp()
DTestData.java212 private final StreamShape shape; field in TestData.AbstractTestData
220 StreamShape shape, in AbstractTestData() argument
227 this.shape = shape; in AbstractTestData()
237 return shape; in getShape()
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DTestFlagExpectedOp.java34 StreamShape shape = StreamShape.REFERENCE; field in TestFlagExpectedOp.Builder
59 Builder<T> shape(StreamShape shape) { in shape() argument
60 this.shape = shape; in shape()
65 return new TestFlagExpectedOp<>(flags, known, preserve, notKnown, shape); in build()
72 final StreamShape shape; field in TestFlagExpectedOp
85 StreamShape shape) { in TestFlagExpectedOp() argument
90 this.shape = shape; in TestFlagExpectedOp()
95 return shape; in outputShape()
100 return shape; in inputShape()
DFlagDeclaringOp.java34 private final StreamShape shape; field in FlagDeclaringOp
40 public FlagDeclaringOp(int flags, StreamShape shape) { in FlagDeclaringOp() argument
42 this.shape = shape; in FlagDeclaringOp()
47 return shape; in outputShape()
52 return shape; in inputShape()
DOpTestCase.java252 final StreamShape shape; field in OpTestCase.ExerciseDataStreamBuilder
276 this.shape = ((AbstractPipeline<?, U, ?>) m.apply(data.stream())).getOutputShape(); in ExerciseDataStreamBuilder()
280 testSet.addAll(testScenarios.get(shape)); in ExerciseDataStreamBuilder()
335 if (ts.getShape() == shape) { in without()
355 if (ts.getShape() == shape) { in with()
450 default R run(Function<S_OUT, R> terminalF, S_OUT source, StreamShape shape) { in run() argument
461 public Object run(Function terminalF, BaseStream source, StreamShape shape) { in SINGLE_SEQUENTIAL_SHORT_CIRCUIT() argument
462 source = (BaseStream) chain(source, new ShortCircuitOp(shape)); in SINGLE_SEQUENTIAL_SHORT_CIRCUIT()
473 public Object run(Function terminalF, BaseStream source, StreamShape shape) { in ALL_SEQUENTIAL_SHORT_CIRCUIT() argument
474 source = (BaseStream) chain(source, new ShortCircuitOp(shape)); in ALL_SEQUENTIAL_SHORT_CIRCUIT()
[all …]
DCollectorOps.java82 protected TestParallelSizedOp(StreamShape shape) { in TestParallelSizedOp() argument
83 super(0, shape); in TestParallelSizedOp()
DTestData.java213 private final StreamShape shape; field in TestData.AbstractTestData
221 StreamShape shape, in AbstractTestData() argument
228 this.shape = shape; in AbstractTestData()
238 return shape; in getShape()
/libcore/ojluni/src/main/java/java/util/stream/
DFindOps.java109 private final StreamShape shape; field in FindOps.FindOp
128 StreamShape shape, in FindOp() argument
133 this.shape = shape; in FindOp()
146 return shape; in inputShape()
DMatchOps.java209 MatchOp(StreamShape shape, in MatchOp() argument
212 this.inputShape = shape; in MatchOp()
DSliceOps.java76 private static <P_IN> Spliterator<P_IN> sliceSpliterator(StreamShape shape, in sliceSpliterator() argument
81 switch (shape) { in sliceSpliterator()
95 throw new IllegalStateException("Unknown shape " + shape); in sliceSpliterator()
DNodes.java82 static <T> Node<T> emptyNode(StreamShape shape) { in emptyNode() argument
83 switch (shape) { in emptyNode()
89 throw new IllegalStateException("Unknown shape " + shape); in emptyNode()
113 static <T> Node<T> conc(StreamShape shape, Node<T> left, Node<T> right) { in conc() argument
114 switch (shape) { in conc()
124 throw new IllegalStateException("Unknown shape " + shape); in conc()
DReduceOps.java694 ReduceOp(StreamShape shape) {
695 inputShape = shape;
/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java1082 public void shape(char[] text, int start, int count) { in shape() method in NumericShaper
1113 public void shape(char[] text, int start, int count, int context) { in shape() method in NumericShaper
1145 public void shape(char[] text, int start, int count, Range context) { in shape() method in NumericShaper
/libcore/benchmarks/src/benchmarks/regression/
DR.java2189 public static final int shape = 0; field in R