Home
last modified time | relevance | path

Searched refs:combineOpFlags (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
DStreamOpFlagsTest.java50 …assertEquals(sourceFlags, toStreamFlags(combineOpFlags(sourceFlags, StreamOpFlag.INITIAL_OPS_VALUE… in testNullCombine()
63 int opsFlags = combineOpFlags(sourceFlags, StreamOpFlag.INITIAL_OPS_VALUE); in testInitialOpFlagsFromSourceFlags()
73 opsFlags = combineOpFlags(sourceFlags, StreamOpFlag.INITIAL_OPS_VALUE); in testSameCombine()
74 opsFlags = combineOpFlags(f.set(), opsFlags); in testSameCombine()
85 opsFlags = combineOpFlags(sourceFlags, StreamOpFlag.INITIAL_OPS_VALUE); in testOpClear()
86 opsFlags = combineOpFlags(f.clear(), opsFlags); in testOpClear()
92 opsFlags = combineOpFlags(sourceFlags, StreamOpFlag.INITIAL_OPS_VALUE); in testOpClear()
93 opsFlags = combineOpFlags(f.clear(), opsFlags); in testOpClear()
104 opsFlags = combineOpFlags(sourceFlags, StreamOpFlag.INITIAL_OPS_VALUE); in testOpInject()
105 opsFlags = combineOpFlags(f.set(), opsFlags); in testOpInject()
[all …]
/libcore/ojluni/src/main/java/java/util/stream/
DAbstractPipeline.java210 this.combinedFlags = StreamOpFlag.combineOpFlags(opFlags, previousStage.combinedFlags); in AbstractPipeline()
441 p.combinedFlags = StreamOpFlag.combineOpFlags(thisOpFlags, u.combinedFlags); in sourceSpliterator()
447 combinedFlags = StreamOpFlag.combineOpFlags(terminalFlags, combinedFlags); in sourceSpliterator()
DStreamOpFlag.java687 public static int combineOpFlags(int newStreamOrOpFlags, int prevCombOpFlags) { in combineOpFlags() method in StreamOpFlag