Lines Matching refs:dictionary_
369 auto current_entry = dictionary_.find(key); in HasKey()
370 DCHECK((current_entry == dictionary_.end()) || current_entry->second); in HasKey()
371 return current_entry != dictionary_.end(); in HasKey()
375 dictionary_.clear(); in Clear()
432 dictionary_[key] = std::move(in_value); in SetWithoutPathExpansion()
616 auto entry_iterator = dictionary_.find(key); in GetWithoutPathExpansion()
617 if (entry_iterator == dictionary_.end()) in GetWithoutPathExpansion()
745 auto entry_iterator = dictionary_.find(key); in RemoveWithoutPathExpansion()
746 if (entry_iterator == dictionary_.end()) in RemoveWithoutPathExpansion()
751 dictionary_.erase(entry_iterator); in RemoveWithoutPathExpansion()
802 dictionary_.swap(other->dictionary_); in Swap()
807 it_(target.dictionary_.begin()) {} in Iterator()
816 for (const auto& current_entry : dictionary_) { in DeepCopy()