Lines Matching refs:root
32 Node root;
35 root.__left_ = &x;
38 x.__parent_ = &root;
43 assert(root.__parent_ == 0);
44 assert(root.__left_ == &y);
45 assert(root.__right_ == 0);
46 assert(y.__parent_ == &root);
57 Node root;
63 root.__left_ = &x;
66 x.__parent_ = &root;
74 assert(root.__parent_ == 0);
75 assert(root.__left_ == &y);
76 assert(root.__right_ == 0);
77 assert(y.__parent_ == &root);