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

/external/icu4c/common/
H A Drbbinode.cpp134 // cloneTree Make a copy of the subtree rooted at this node.
141 RBBINode *RBBINode::cloneTree() { function in class:RBBINode
147 n = fLeftChild->cloneTree();
155 n->fLeftChild = fLeftChild->cloneTree();
159 n->fRightChild = fRightChild->cloneTree();
183 // found, then calling cloneTree() at that point. Any
184 // nested references are handled by cloneTree(), not here.
189 RBBINode *retNode = fLeftChild->cloneTree();
222 fLeftChild = replTree->cloneTree();
235 fRightChild = replTree->cloneTree();
[all...]

Completed in 32 milliseconds