Home | History | Annotate | Download | only in Support

Lines Matching refs:subtree

22   path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
39 // NR is the subtree containing our left sibling.
40 NodeRef NR = path[l].subtree(path[l].offset - 1);
44 NR = NR.subtree(NR.size() - 1);
63 // NR is the subtree containing our left sibling.
65 NodeRef NR = subtree(l);
67 // Get the rightmost node in the subtree.
70 NR = NR.subtree(NR.size() - 1);
89 // NR is the subtree containing our right sibling.
90 NodeRef NR = path[l].subtree(path[l].offset + 1);
94 NR = NR.subtree(0);
106 // NR is the subtree containing our right sibling. If we hit end(), we have
110 NodeRef NR = subtree(l);
114 NR = NR.subtree(0);