Searched refs:entry_it (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/tools/aapt2/ |
D | ResourceTable.cpp | 487 auto entry_it = std::equal_range(type->entries.begin(), type->entries.end(), res.name.entry, in AddResource() local 489 const size_t entry_count = std::distance(entry_it.first, entry_it.second); in AddResource() 497 entry = entry_it.first->get(); in AddResource() 503 entry = entry_it.first->get(); in AddResource() 504 for (auto it = entry_it.first; it != entry_it.second; ++it) { in AddResource() 631 auto entry_it = std::equal_range(type->entries.begin(), type->entries.end(), name.entry, in FindResource() local 633 for (auto it = entry_it.first; it != entry_it.second; ++it) { in FindResource() 652 auto entry_it = std::equal_range(type->entries.begin(), type->entries.end(), name.entry, in RemoveResource() local 654 for (auto it = entry_it.first; it != entry_it.second; ++it) { in RemoveResource()
|
/frameworks/compile/mclinker/lib/LD/ |
D | GarbageCollection.cpp | 292 SectionVecTy::iterator entry_it, entry_end = pEntry.end(); in findReferencedSections() local 293 for (entry_it = pEntry.begin(); entry_it != entry_end; ++entry_it) { in findReferencedSections() 295 work_list.push(*entry_it); in findReferencedSections()
|
/frameworks/base/libs/androidfw/ |
D | AssetManager2.cpp | 1654 const auto entry_it = entries_.begin() + (key_it - keys_.begin()); in ApplyStyle() local 1660 entries_.erase(entry_it); in ApplyStyle() 1662 *entry_it = Entry{it->cookie, (*bag)->type_spec_flags, it->value}; in ApplyStyle() 1666 entries_.insert(entry_it, Entry{it->cookie, (*bag)->type_spec_flags, it->value}); in ApplyStyle() 1693 const auto entry_it = entries_.begin() + (key_it - keys_.begin()); in GetAttribute() local 1694 type_spec_flags |= entry_it->type_spec_flags; in GetAttribute() 1695 if (entry_it->value.dataType == Res_value::TYPE_ATTRIBUTE) { in GetAttribute() 1696 resid = entry_it->value.data; in GetAttribute() 1700 return AssetManager2::SelectedValue(entry_it->value.dataType, entry_it->value.data, in GetAttribute() 1701 entry_it->cookie, type_spec_flags, 0U /* resid */, in GetAttribute() [all …]
|