Home | History | Annotate | Download | only in common

Lines Matching defs:cn

114     RBBINode *cn = new RBBINode(RBBINode::opCat);
116 if (cn == NULL) {
120 cn->fLeftChild = fTree;
121 fTree->fParent = cn;
122 cn->fRightChild = new RBBINode(RBBINode::endMark);
124 if (cn->fRightChild == NULL) {
126 delete cn;
129 cn->fRightChild->fParent = cn;
130 fTree = cn;