Home
last modified time | relevance | path

Searched refs:fRightChild (Results 1 – 14 of 14) 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.cpp109 bofTop->fRightChild = fTree; in buildForwardTable()
128 RBBINode *endMarkerNode = cn->fRightChild = new RBBINode(RBBINode::endMark); in buildForwardTable()
130 if (cn->fRightChild == NULL) { in buildForwardTable()
135 cn->fRightChild->fParent = cn; in buildForwardTable()
227 calcNullable(n->fRightChild); in calcNullable()
231 n->fNullable = n->fLeftChild->fNullable || n->fRightChild->fNullable; in calcNullable()
234 n->fNullable = n->fLeftChild->fNullable && n->fRightChild->fNullable; in calcNullable()
271 calcFirstPos(n->fRightChild); in calcFirstPos()
276 setAdd(n->fFirstPosSet, n->fRightChild->fFirstPosSet); in calcFirstPos()
281 setAdd(n->fFirstPosSet, n->fRightChild->fFirstPosSet); in calcFirstPos()
[all …]
Drbbinode.h60 RBBINode *fRightChild; variable
Drbbisetb.cpp397 orNode->fRightChild = leafNode; in addValToSet()
399 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/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.java138 bofTop.fRightChild = fRB.fTreeRoots[fRootIx]; in buildForwardTable()
152 RBBINode endMarkerNode = cn.fRightChild = new RBBINode(RBBINode.endMark); in buildForwardTable()
153 cn.fRightChild.fParent = cn; in buildForwardTable()
243 calcNullable(n.fRightChild); in calcNullable()
247 n.fNullable = n.fLeftChild.fNullable || n.fRightChild.fNullable; in calcNullable()
250 n.fNullable = n.fLeftChild.fNullable && n.fRightChild.fNullable; in calcNullable()
284 calcFirstPos(n.fRightChild); in calcFirstPos()
289 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
294 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
327 calcLastPos(n.fRightChild); in calcLastPos()
[all …]
DRBBIRuleScanner.java264 catNode.fRightChild = endNode; in doParseActions()
309 orNode.fRightChild = thisRule; in doParseActions()
570 n.fRightChild = fNodeStack[fNodeStackPtr]; in fixOpStack()
DRBBISetBuilder.java420 orNode.fRightChild = leafNode; in addValToSet()
422 orNode.fRightChild.fParent = orNode; in addValToSet()
/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.java137 bofTop.fRightChild = fRB.fTreeRoots[fRootIx]; in buildForwardTable()
151 RBBINode endMarkerNode = cn.fRightChild = new RBBINode(RBBINode.endMark); in buildForwardTable()
152 cn.fRightChild.fParent = cn; in buildForwardTable()
242 calcNullable(n.fRightChild); in calcNullable()
246 n.fNullable = n.fLeftChild.fNullable || n.fRightChild.fNullable; in calcNullable()
249 n.fNullable = n.fLeftChild.fNullable && n.fRightChild.fNullable; in calcNullable()
283 calcFirstPos(n.fRightChild); in calcFirstPos()
288 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
293 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos()
326 calcLastPos(n.fRightChild); in calcLastPos()
[all …]
DRBBIRuleScanner.java263 catNode.fRightChild = endNode; in doParseActions()
308 orNode.fRightChild = thisRule; in doParseActions()
569 n.fRightChild = fNodeStack[fNodeStackPtr]; in fixOpStack()
DRBBISetBuilder.java419 orNode.fRightChild = leafNode; in addValToSet()
421 orNode.fRightChild.fParent = orNode; in addValToSet()
/external/icu/libicu/cts_headers/
Drbbinode.h60 RBBINode *fRightChild; variable