Home | History | Annotate | Download | only in associative

Lines Matching refs:__right_

23     Node* __right_;
26 Node() : __left_(), __right_(), __parent_() {}
37 x.__right_ = 0;
40 y.__right_ = 0;
45 assert(root.__right_ == 0);
48 assert(y.__right_ == &x);
51 assert(x.__right_ == 0);
65 x.__right_ = &c;
68 y.__right_ = &b;
76 assert(root.__right_ == 0);
79 assert(y.__right_ == &x);
82 assert(x.__right_ == &c);
85 assert(a.__right_ == 0);
88 assert(b.__right_ == 0);
91 assert(c.__right_ == 0);