Home | History | Annotate | Download | only in Support

Lines Matching refs:Level

25 NodeRef Path::getLeftSibling(unsigned Level) const {
27 if (Level == 0)
31 unsigned l = Level - 1;
43 for (++l; l != Level; ++l)
48 void Path::moveLeft(unsigned Level) {
49 assert(Level != 0 && "Cannot move the root node");
54 l = Level - 1;
59 } else if (height() < Level)
61 path.resize(Level + 1, Entry(nullptr, 0, 0));
68 for (++l; l != Level; ++l) {
75 NodeRef Path::getRightSibling(unsigned Level) const {
77 if (Level == 0)
81 unsigned l = Level - 1;
93 for (++l; l != Level; ++l)
98 void Path::moveRight(unsigned Level) {
99 assert(Level != 0 && "Cannot move the root node");
102 unsigned l = Level - 1;
112 for (++l; l != Level; ++l) {