Home | History | Annotate | Download | only in text

Lines Matching defs:fLeftChild

71     RBBINode      fLeftChild;
162 n = fLeftChild.cloneTree();
167 if (fLeftChild != null) {
168 n.fLeftChild = fLeftChild.cloneTree();
169 n.fLeftChild.fParent = n;
201 RBBINode retNode = fLeftChild.cloneTree();
207 if (fLeftChild != null) {
208 fLeftChild = fLeftChild.flattenVariables();
209 fLeftChild.fParent = this;
229 if (fLeftChild != null) {
230 if (fLeftChild.fType == setRef) {
231 RBBINode setRefNode = fLeftChild;
232 RBBINode usetNode = setRefNode.fLeftChild;
233 RBBINode replTree = usetNode.fLeftChild;
234 fLeftChild = replTree.cloneTree();
235 fLeftChild.fParent = this;
237 fLeftChild.flattenSets();
244 RBBINode usetNode = setRefNode.fLeftChild;
245 RBBINode replTree = usetNode.fLeftChild;
265 if (fLeftChild != null) {
266 fLeftChild.findNodes(dest, kind);
289 RBBINode.printInt(n.fLeftChild==null? 0 : n.fLeftChild.fSerialNum, 11);
355 if (fLeftChild != null) {
356 fLeftChild.printTree(false);