Searched refs:files_ (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/tools/aapt2/io/ |
D | FileSystem.cpp | 78 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in FileCollectionIterator() 142 auto it = files_.lower_bound(path); in InsertFile() 143 if (it != files_.end() && it->first == path) { in InsertFile() 146 it = files_.emplace_hint(it, path, std::move(file)); in InsertFile() 152 auto iter = files_.find(path); in FindFile() 153 if (iter != files_.end()) { in FindFile()
|
D | ZipArchive.cpp | 88 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in ZipFileCollectionIterator() 144 collection->files_.push_back(std::move(file)); in Create()
|
D | FileSystem.h | 77 std::map<std::string, std::unique_ptr<IFile>, std::less<>> files_; variable
|
D | ZipArchive.h | 79 std::vector<std::unique_ptr<IFile>> files_; variable
|
/frameworks/base/tools/aapt2/cmd/ |
D | Dump.h | 232 AddRequiredFlagList("--file", "A compiled xml file to print", &files_); in DumpXmlStringsCommand() 238 std::vector<std::string> files_; 257 AddRequiredFlagList("--file", "A compiled xml file to print", &files_); in DumpXmlTreeCommand() 263 std::vector<std::string> files_;
|
D | Dump.cpp | 332 for (auto xml_file : files_) { in Dump() 386 for (auto file : files_) { in Dump()
|
/frameworks/base/tools/aapt2/format/binary/ |
D | BinaryResourceParser.h | 104 io::IFileCollection* files_; variable
|
D | BinaryResourceParser.cpp | 92 : diag_(diag), table_(table), source_(source), data_(data), data_len_(len), files_(files) { in BinaryResourceParser() 567 if (files_ != nullptr) { in ParseValue() 570 file_ref->file = files_->FindFile(*file_ref->path); in ParseValue()
|