Home
last modified time | relevance | path

Searched refs:map_ (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/io/
DData.h97 explicit MmappedData(android::FileMap&& map) : map_(std::forward<android::FileMap>(map)) {} in MmappedData()
100 const void* data() const override { return map_.getDataPtr(); } in data()
102 size_t size() const override { return map_.getDataLength(); } in size()
105 if (next_read_ == map_.getDataLength()) { in Next()
108 *data = reinterpret_cast<const uint8_t*>(map_.getDataPtr()) + next_read_; in Next()
109 *size = map_.getDataLength() - next_read_; in Next()
110 next_read_ = map_.getDataLength(); in Next()
136 android::FileMap map_; variable
/frameworks/base/tools/aapt2/xml/
DXmlActionExecutor.h58 return map_[name];
71 std::map<std::string, XmlNodeAction> map_; variable
83 return map_[name];
91 std::map<std::string, XmlNodeAction> map_;
DXmlActionExecutor.cpp60 std::map<std::string, XmlNodeAction>::const_iterator iter = map_.find(child_el->name); in Execute()
61 if (iter != map_.end()) { in Execute()
105 std::map<std::string, XmlNodeAction>::const_iterator iter = map_.find(el->name); in Execute()
106 if (iter != map_.end()) { in Execute()