Home
last modified time | relevance | path

Searched refs:files_ (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/tools/aapt2/io/
DFileSystem.cpp78 : 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()
DZipArchive.cpp88 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in ZipFileCollectionIterator()
144 collection->files_.push_back(std::move(file)); in Create()
DFileSystem.h77 std::map<std::string, std::unique_ptr<IFile>, std::less<>> files_; variable
DZipArchive.h79 std::vector<std::unique_ptr<IFile>> files_; variable
/frameworks/base/tools/aapt2/cmd/
DDump.h232 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_;
DDump.cpp332 for (auto xml_file : files_) { in Dump()
386 for (auto file : files_) { in Dump()
/frameworks/base/tools/aapt2/format/binary/
DBinaryResourceParser.h104 io::IFileCollection* files_; variable
DBinaryResourceParser.cpp92 : 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()