Searched refs:entry_it (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/base/tools/aapt2/ |
H A D | ResourceTable.cpp | 476 auto entry_it = std::equal_range(type->entries.begin(), type->entries.end(), res.name.entry, in AddResource() local 478 const size_t entry_count = std::distance(entry_it.first, entry_it.second); in AddResource() 486 entry = entry_it.first->get(); in AddResource() 492 entry = entry_it.first->get(); in AddResource() 493 for (auto it = entry_it.first; it != entry_it.second; ++it) { in AddResource() 618 auto entry_it = std::equal_range(type->entries.begin(), type->entries.end(), name.entry, in FindResource() local 620 for (auto it = entry_it.first; it != entry_it.second; ++it) { in FindResource() 639 auto entry_it = std::equal_range(type->entries.begin(), type->entries.end(), name.entry, in RemoveResource() local 641 for (auto it = entry_it.first; it != entry_it.second; ++it) { in RemoveResource()
|
/aosp12/frameworks/compile/mclinker/lib/LD/ |
H A 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()
|
/aosp12/frameworks/base/libs/androidfw/ |
H A D | AssetManager2.cpp | 1405 if (entry_it != entries_.end() && entry_it->attr_res_id == attr_res_id) { in ApplyStyle() 1409 entries_.erase(entry_it); in ApplyStyle() 1411 *entry_it = new_entry; in ApplyStyle() 1414 entries_.insert(entry_it, new_entry); in ApplyStyle() 1437 auto entry_it = std::lower_bound(entries_.begin(), entries_.end(), resid, in GetAttribute() local 1439 if (entry_it == entries_.end() || entry_it->attr_res_id != resid) { in GetAttribute() 1443 type_spec_flags |= entry_it->type_spec_flags; in GetAttribute() 1444 if (entry_it->value.dataType == Res_value::TYPE_ATTRIBUTE) { in GetAttribute() 1445 resid = entry_it->value.data; in GetAttribute() 1449 return AssetManager2::SelectedValue(entry_it->value.dataType, entry_it->value.data, in GetAttribute() [all …]
|
/aosp12/system/media/camera/docs/ |
H A D | metadata_model.py | 502 for idx, (kind_name, entry_it) in enumerate(leaf_it): 510 for p in entry_it:
|