Lines Matching refs:entry_it
1403 auto entry_it = std::lower_bound(entries_.begin(), entries_.end(), attr_res_id, in ApplyStyle() local
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()
1450 entry_it->cookie, type_spec_flags, 0U /* resid */, in GetAttribute()
1604 auto entry_it = std::lower_bound(entries_.begin(), entries_.end(), dest_attr_id, in SetTo() local
1606 entries_.insert(entry_it, new_entry); in SetTo()