Lines Matching refs:files_
591 const std::string& GetContent(const std::string& f) { return files_[f]; } in GetContent()
603 assert(files_[file_name] == content); in WriteToNewFile()
611 auto iter = files_.find(f); in NewSequentialFile()
612 if (iter == files_.end()) { in NewSequentialFile()
626 auto iter = files_.find(f); in NewWritableFile()
627 if (iter != files_.end()) { in NewWritableFile()
630 r->reset(new StringSink(&files_[f])); in NewWritableFile()
639 if (files_.find(f) == files_.end()) { in FileExists()
649 files_.erase(f); in DeleteFile()
662 auto iter = files_.find(f); in GetFileSize()
663 if (iter == files_.end()) { in GetFileSize()
696 std::unordered_map<std::string, std::string> files_;