Home
last modified time | relevance | path

Searched refs:strings_ (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/aapt2/
DStringPool.cpp186 entry->index_ = strings_.size(); in MakeRefImpl()
191 strings_.emplace_back(std::move(entry)); in MakeRefImpl()
245 const size_t string_len = strings_.size(); in ReAssignIndices()
247 strings_[index]->index_ = index; in ReAssignIndices()
253 for (std::unique_ptr<Entry>& entry : pool.strings_) { in Merge()
260 std::move(pool.strings_.begin(), pool.strings_.end(), std::back_inserter(strings_)); in Merge()
261 pool.strings_.clear(); in Merge()
269 strings_.reserve(strings_.size() + string_count); in HintWillAdd()
285 std::remove_if(strings_.begin(), strings_.end(), in Prune()
292 strings_.erase(end_iter2, strings_.end()); in Prune()
[all …]
DStringPool.h193 return strings_; in strings()
198 return styles_.size() + strings_.size(); in size()
220 std::vector<std::unique_ptr<Entry>> strings_; variable
/frameworks/base/startop/view_compiler/
Ddex_builder.h602 std::unordered_map<std::string, ir::String*> strings_; variable
Ddex_builder.cc201 ir::String*& entry = strings_[string]; in GetOrAddString()