Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/
DAssetManager2.cpp1653 const auto key_it = std::lower_bound(keys_.begin(), keys_.end(), attr_res_id); in ApplyStyle() local
1654 const auto entry_it = entries_.begin() + (key_it - keys_.begin()); in ApplyStyle()
1655 if (key_it != keys_.end() && *key_it == attr_res_id) { in ApplyStyle()
1659 keys_.erase(key_it); in ApplyStyle()
1665 keys_.insert(key_it, attr_res_id); in ApplyStyle()
1689 const auto key_it = std::lower_bound(keys_.begin(), keys_.end(), resid); in GetAttribute() local
1690 if (key_it == keys_.end() || *key_it != resid) { in GetAttribute()
1693 const auto entry_it = entries_.begin() + (key_it - keys_.begin()); in GetAttribute()
1858 const auto key_it = std::lower_bound(keys_.begin(), keys_.end(), dest_attr_id); in SetTo() local
1859 const auto entry_it = entries_.begin() + (key_it - keys_.begin()); in SetTo()
[all …]