Home
last modified time | relevance | path

Searched refs:fRightChild (Results 1 – 13 of 13) sorted by relevance

/external/icu/icu4c/source/common/
Drbbinode.cpp57 fRightChild = NULL; in RBBINode()
87 fRightChild = NULL; in RBBINode()
128 delete fRightChild; in ~RBBINode()
129 fRightChild = NULL; in ~RBBINode()
166 if (fRightChild != NULL) { in cloneTree()
167 n->fRightChild = fRightChild->cloneTree(); in cloneTree()
168 n->fRightChild->fParent = n; in cloneTree()
210 if (fRightChild != NULL) { in flattenVariables()
211 fRightChild = fRightChild->flattenVariables(); in flattenVariables()
212 fRightChild->fParent = this; in flattenVariables()
[all …]
Drbbitblb.cpp105 bofTop->fRightChild = fTree; in buildForwardTable()
124 cn->fRightChild = new RBBINode(RBBINode::endMark); in buildForwardTable()
126 if (cn->fRightChild == NULL) { in buildForwardTable()
131 cn->fRightChild->fParent = cn; in buildForwardTable()
222 calcNullable(n->fRightChild); in calcNullable()
226 n->fNullable = n->fLeftChild->fNullable || n->fRightChild->fNullable; in calcNullable()
229 n->fNullable = n->fLeftChild->fNullable && n->fRightChild->fNullable; in calcNullable()
266 calcFirstPos(n->fRightChild); in calcFirstPos()
271 setAdd(n->fFirstPosSet, n->fRightChild->fFirstPosSet); in calcFirstPos()
276 setAdd(n->fFirstPosSet, n->fRightChild->fFirstPosSet); in calcFirstPos()
[all …]
Drbbinode.h60 RBBINode *fRightChild; variable
Drbbisetb.cpp368 orNode->fRightChild = leafNode; in addValToSet()
370 orNode->fRightChild->fParent = orNode; in addValToSet()
Drbbiscan.cpp345 catNode->fRightChild = endNode; in doParseActions()
391 orNode->fRightChild = thisRule; in doParseActions()
689 n->fRightChild = fNodeStack[fNodeStackPtr]; in fixOpStack()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBINode.java71 RBBINode fRightChild; field in RBBINode
170 if (fRightChild != null) {
171 n.fRightChild = fRightChild.cloneTree();
172 n.fRightChild.fParent = n;
210 if (fRightChild != null) {
211 fRightChild = fRightChild.flattenVariables();
212 fRightChild.fParent = this;
240 if (fRightChild != null) {
241 if (fRightChild.fType == setRef) {
242 RBBINode setRefNode = fRightChild;
[all …]
DRBBITableBuilder.java126 bofTop.fRightChild = fRB.fTreeRoots[fRootIx]; in buildForwardTable()
140 cn.fRightChild = new RBBINode(RBBINode.endMark); in buildForwardTable()
141 cn.fRightChild.fParent = cn; in buildForwardTable()
230 calcNullable(n.fRightChild); in calcNullable()
234 n.fNullable = n.fLeftChild.fNullable || n.fRightChild.fNullable; in calcNullable()
237 n.fNullable = n.fLeftChild.fNullable && n.fRightChild.fNullable; in calcNullable()
271 calcFirstPos(n.fRightChild); in calcFirstPos()
276 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
281 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
314 calcLastPos(n.fRightChild); in calcLastPos()
[all …]
DRBBISetBuilder.java388 orNode.fRightChild = leafNode; in addValToSet()
390 orNode.fRightChild.fParent = orNode; in addValToSet()
DRBBIRuleScanner.java263 catNode.fRightChild = endNode; in doParseActions()
308 orNode.fRightChild = thisRule; in doParseActions()
569 n.fRightChild = fNodeStack[fNodeStackPtr]; in fixOpStack()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBINode.java72 RBBINode fRightChild; field in RBBINode
171 if (fRightChild != null) {
172 n.fRightChild = fRightChild.cloneTree();
173 n.fRightChild.fParent = n;
211 if (fRightChild != null) {
212 fRightChild = fRightChild.flattenVariables();
213 fRightChild.fParent = this;
241 if (fRightChild != null) {
242 if (fRightChild.fType == setRef) {
243 RBBINode setRefNode = fRightChild;
[all …]
DRBBITableBuilder.java127 bofTop.fRightChild = fRB.fTreeRoots[fRootIx]; in buildForwardTable()
141 cn.fRightChild = new RBBINode(RBBINode.endMark); in buildForwardTable()
142 cn.fRightChild.fParent = cn; in buildForwardTable()
231 calcNullable(n.fRightChild); in calcNullable()
235 n.fNullable = n.fLeftChild.fNullable || n.fRightChild.fNullable; in calcNullable()
238 n.fNullable = n.fLeftChild.fNullable && n.fRightChild.fNullable; in calcNullable()
272 calcFirstPos(n.fRightChild); in calcFirstPos()
277 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
282 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
315 calcLastPos(n.fRightChild); in calcLastPos()
[all …]
DRBBISetBuilder.java389 orNode.fRightChild = leafNode; in addValToSet()
391 orNode.fRightChild.fParent = orNode; in addValToSet()
DRBBIRuleScanner.java264 catNode.fRightChild = endNode; in doParseActions()
309 orNode.fRightChild = thisRule; in doParseActions()
570 n.fRightChild = fNodeStack[fNodeStackPtr]; in fixOpStack()