Lines Matching refs:index_
76 iterator(BacktraceMap* map, size_t index) : map_(map), index_(index) {} in iterator()
79 index_++;
83 index_ += increment;
87 index_--;
91 index_ -= decrement;
95 bool operator==(const iterator& rhs) { return this->index_ == rhs.index_; }
96 bool operator!=(const iterator& rhs) { return this->index_ != rhs.index_; }
99 if (index_ >= map_->size()) {
102 backtrace_map_t* map = &map_->maps_[index_];
104 map->load_bias = map_->GetLoadBias(index_);
111 size_t index_ = 0; variable