Home | History | Annotate | Download | only in common

Lines Matching defs:RBBINode

14 //  class RBBINode
25 class RBBINode : public UMemory {
55 RBBINode *fParent;
56 RBBINode *fLeftChild;
57 RBBINode *fRightChild;
87 RBBINode(NodeType t);
88 RBBINode(const RBBINode &other);
89 ~RBBINode();
91 RBBINode *cloneTree();
92 RBBINode *flattenVariables();
94 void findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status);
102 RBBINode &operator = (const RBBINode &other); // No defs.
103 UBool operator == (const RBBINode &other); // Private, so these functions won't accidently be used.