Lines Matching defs:level_
246 if (level_ == 0) {
250 --level_;
251 while (current_->key_hash[level_] == kRight || path_[level_] == nullptr) {
252 if (level_ == 0) {
256 --level_;
258 const FocusedTree* first_right_alternative = path_[level_];
259 level_++;
260 current_ = FindLeftmost(first_right_alternative, &level_, &path_);
295 i.current_ = FindLeftmost(tree, &i.level_, &i.path_);
308 int level_;
315 : level_(0), current_(nullptr), def_value_(def_value) {}