Home | History | Annotate | Download | only in base

Lines Matching refs:list_

870   list_.clear();
881 if (index >= list_.size()) {
883 while (index > list_.size())
888 DCHECK(list_[index] != in_value);
889 list_[index] = std::move(in_value);
895 if (index >= list_.size())
899 *out_value = list_[index].get();
1006 if (index >= list_.size())
1010 *out_value = std::move(list_[index]);
1012 list_.erase(list_.begin() + index);
1017 for (auto it = list_.begin(); it != list_.end(); ++it) {
1019 size_t previous_index = it - list_.begin();
1020 list_.erase(it);
1035 return list_.erase(iter);
1039 list_.push_back(std::move(in_value));
1083 for (const auto& entry : list_) {
1089 list_.emplace_back(in_value);
1095 if (index > list_.size())
1098 list_.insert(list_.begin() + index, WrapUnique(in_value));
1103 return std::find_if(list_.begin(), list_.end(),
1110 list_.swap(other->list_);
1128 for (const auto& entry : list_)