Searched refs:fLeftChild (Results 1 – 6 of 6) sorted by relevance
52 fLeftChild = NULL; in RBBINode()80 fLeftChild = NULL; in RBBINode()118 delete fLeftChild; in ~RBBINode()119 fLeftChild = NULL; in ~RBBINode()147 n = fLeftChild->cloneTree(); in cloneTree()154 if (fLeftChild != NULL) { in cloneTree()155 n->fLeftChild = fLeftChild->cloneTree(); in cloneTree()156 n->fLeftChild->fParent = n; in cloneTree()189 RBBINode *retNode = fLeftChild->cloneTree(); in flattenVariables()194 if (fLeftChild != NULL) { in flattenVariables()[all …]
85 exprNode = varRefNode->fLeftChild; // Root node of expression for variable in lookup()90 usetNode = exprNode->fLeftChild; in lookup()215 delete val->fLeftChild; in ~RBBISymbolTableEntry()216 val->fLeftChild = NULL; in ~RBBISymbolTableEntry()244 RBBI_DEBUG_printUnicodeString(s->val->fLeftChild->fText); in rbbiSymtablePrint()257 s->val->fLeftChild->printTree(TRUE); in rbbiSymtablePrint()
102 bofTop->fLeftChild = bofLeaf; in build()120 cn->fLeftChild = fTree; in build()221 calcNullable(n->fLeftChild); in calcNullable()226 n->fNullable = n->fLeftChild->fNullable || n->fRightChild->fNullable; in calcNullable()229 n->fNullable = n->fLeftChild->fNullable && n->fRightChild->fNullable; in calcNullable()265 calcFirstPos(n->fLeftChild); in calcFirstPos()270 setAdd(n->fFirstPosSet, n->fLeftChild->fFirstPosSet); in calcFirstPos()274 setAdd(n->fFirstPosSet, n->fLeftChild->fFirstPosSet); in calcFirstPos()275 if (n->fLeftChild->fNullable) { in calcFirstPos()282 setAdd(n->fFirstPosSet, n->fLeftChild->fFirstPosSet); in calcFirstPos()[all …]
215 orNode->fLeftChild = operandNode; in doParseActions()229 catNode->fLeftChild = operandNode; in doParseActions()288 varRefNode->fLeftChild = RHSExprNode; in doParseActions()325 catNode->fLeftChild = thisRule; in doParseActions()351 orNode->fLeftChild = prevRules; in doParseActions()391 plusNode->fLeftChild = operandNode; in doParseActions()400 qNode->fLeftChild = operandNode; in doParseActions()409 starNode->fLeftChild = operandNode; in doParseActions()532 n->fLeftChild = fSymbolTable->lookupNode(n->fText); in doParseActions()537 if (n->fLeftChild == NULL) { in doParseActions()[all …]
366 if (usetNode->fLeftChild == NULL) { in addValToSet()367 usetNode->fLeftChild = leafNode; in addValToSet()378 orNode->fLeftChild = usetNode->fLeftChild; in addValToSet()380 orNode->fLeftChild->fParent = orNode; in addValToSet()382 usetNode->fLeftChild = orNode; in addValToSet()548 if (usetNode->fLeftChild != NULL) { in printSets()549 usetNode->fLeftChild->printTree(TRUE); in printSets()
56 RBBINode *fLeftChild; variable