Home
last modified time | relevance | path

Searched refs:leftChild (Results 1 – 6 of 6) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DBinaryTreeTraverser.java46 public abstract Optional<T> leftChild(T root); in leftChild() method in BinaryTreeTraverser
71 Optional<T> left = leftChild(root); in children()
116 pushIfPresent(stack, leftChild(result));
161 pushIfPresent(stack, leftChild(node));
200 pushIfPresent(stack, leftChild(node));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DBinaryTreeTraverser.java39 public abstract Optional<T> leftChild(T root); in leftChild() method in BinaryTreeTraverser
64 Optional<T> left = leftChild(root); in children()
123 pushIfPresent(leftChild(inOrderNode.node));
/external/guava/guava-tests/benchmark/com/google/common/collect/
DBinaryTreeTraverserBenchmark.java104 Optional<BinaryNode> leftChild = createTreap(keys.subList(0, minIndex)); in createTreap() local
106 return Optional.of(new BinaryNode(keys.get(minIndex), leftChild, rightChild)); in createTreap()
117 public Optional<BinaryNode> leftChild(BinaryNode node) {
/external/skia/src/core/
DSkThreadedBMPDevice.cpp141 int leftChild = (tileIndex + 1) * 2 - 1; in next() local
142 int rightChild = leftChild + 1; in next()
143 if (leftChild < fTileCnt) { in next()
144 fScheduleData[leftChild].fSemaphore.signal(); in next()
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DTreeTraverserTest.java71 public Optional<BinaryTree> leftChild(BinaryTree node) {
/external/guava/guava-tests/test/com/google/common/collect/
DTreeTraverserTest.java73 public Optional<BinaryTree> leftChild(BinaryTree node) {