Home | History | Annotate | Download | only in platform

Lines Matching refs:m_root

114         : m_root(0)
126 , m_root(0)
138 , m_root(0)
152 markFree(m_root);
154 m_root = 0;
202 if (!m_root)
204 visitInorderImpl(m_root, visitor);
225 return checkInvariantsFromNode(m_root, &blackCount);
234 dumpFromNode(m_root, 0);
302 Node* root() const { return m_root; }
324 return treeSearchFullComparisons(m_root, data);
326 return treeSearchNormal(m_root, data);
367 Node* x = m_root;
377 m_root = z;
438 m_root = y;
471 m_root = x;
501 while (x != m_root && x->parent()->color() == Red) {
560 m_root->setColor(Black);
568 while (x != m_root && (!x || x->color() == Black)) {
603 x = m_root;
643 x = m_root;
682 m_root = x;
819 Node* m_root;