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

/libcore/ojluni/src/main/java/java/util/stream/
H A DNodes.java936 int curChildIndex; field in class:Nodes.InternalNodeSpliterator
964 for (int i = curNode.getChildCount() - 1; i >= curChildIndex; i--)
1021 else if (curChildIndex < curNode.getChildCount() - 1)
1022 return (S) curNode.getChild(curChildIndex++).spliterator();
1024 curNode = (N) curNode.getChild(curChildIndex);
1030 curChildIndex = 0;
1031 return (S) curNode.getChild(curChildIndex++).spliterator();
1047 for (int i = curChildIndex; i < curNode.getChildCount(); i++)

Completed in 9 milliseconds