Home
last modified time | relevance | path

Searched refs:rightChild (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
DAbstractTask.java123 protected K rightChild; field in AbstractTask
298 K leftChild, rightChild, taskToFork; in compute() local
300 task.rightChild = rightChild = task.makeChild(rs); in compute()
306 taskToFork = rightChild; in compute()
310 task = rightChild; in compute()
331 leftChild = rightChild = null; in onCompletion()
DAbstractShortCircuitTask.java118 K leftChild, rightChild, taskToFork; in compute() local
120 task.rightChild = rightChild = task.makeChild(rs); in compute()
126 taskToFork = rightChild; in compute()
130 task = rightChild; in compute()
228 K rightSibling = parent.rightChild; in cancelLaterNodes()
DForEachOps.java411 ForEachOrderedTask<S, T> rightChild = in doCompute() local
420 rightChild.addToPendingCount(1); in doCompute()
421 task.completionMap.put(leftChild, rightChild); in doCompute()
454 taskToFork = rightChild; in doCompute()
458 task = rightChild; in doCompute()
DWhileOps.java1247 shortCircuited = leftChild.shortCircuited | rightChild.shortCircuited;
1259 thisNodeSize = leftChild.thisNodeSize + rightChild.thisNodeSize;
1274 return rightChild.getLocalResult();
1276 else if (rightChild.thisNodeSize == 0) {
1284 leftChild.getLocalResult(), rightChild.getLocalResult());
1383 index += rightChild.index;
1386 thisNodeSize = leftChild.thisNodeSize + rightChild.thisNodeSize;
1398 return rightChild.getLocalResult();
1400 else if (rightChild.thisNodeSize == 0) {
1408 leftChild.getLocalResult(), rightChild.getLocalResult());
DSliceOps.java637 thisNodeSize = leftChild.thisNodeSize + rightChild.thisNodeSize;
645 result = rightChild.getLocalResult();
648 leftChild.getLocalResult(), rightChild.getLocalResult());
688 if (node == parent.rightChild) {
715 SliceTask<P_IN, P_OUT> right = rightChild;
DFindOps.java305 p = child, child = rightChild) { in onCompletion()
DReduceOps.java754 leftResult.combine(rightChild.getLocalResult());
DNodes.java2197 … setLocalResult(concFactory.apply(leftChild.getLocalResult(), rightChild.getLocalResult()));