OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clonetree
(Results
1 - 5
of
5
) sorted by null
/external/icu/android_icu4j/src/main/java/android/icu/text/
RBBINode.java
140
//
cloneTree
Make a copy of the subtree rooted at this node.
147
RBBINode
cloneTree
() {
153
n = fLeftChild.
cloneTree
();
159
n.fLeftChild = fLeftChild.
cloneTree
();
163
n.fRightChild = fRightChild.
cloneTree
();
186
// found, then calling
cloneTree
() at that point. Any
187
// nested references are handled by
cloneTree
(), not here.
192
RBBINode retNode = fLeftChild.
cloneTree
();
224
fLeftChild = replTree.
cloneTree
();
236
fRightChild = replTree.
cloneTree
();
[
all
...]
/external/icu/icu4c/source/common/
rbbinode.cpp
134
//
cloneTree
Make a copy of the subtree rooted at this node.
141
RBBINode *RBBINode::
cloneTree
() {
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
...]
rbbinode.h
91
RBBINode *
cloneTree
();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RBBINode.java
139
//
cloneTree
Make a copy of the subtree rooted at this node.
146
RBBINode
cloneTree
() {
152
n = fLeftChild.
cloneTree
();
158
n.fLeftChild = fLeftChild.
cloneTree
();
162
n.fRightChild = fRightChild.
cloneTree
();
185
// found, then calling
cloneTree
() at that point. Any
186
// nested references are handled by
cloneTree
(), not here.
191
RBBINode retNode = fLeftChild.
cloneTree
();
223
fLeftChild = replTree.
cloneTree
();
235
fRightChild = replTree.
cloneTree
();
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeFactory.cs
41
TTree
CloneTree
( TTree tree );
Completed in 623 milliseconds