Lines Matching defs:found
3 // found in the LICENSE file.
290 iterator found = tree::lower_bound(key);
291 if (found == tree::end() || tree::key_comp()(key, found->first))
292 found = tree::unsafe_emplace(found, key, mapped_type());
293 return found->second;
299 iterator found = tree::lower_bound(key);
300 if (found == tree::end() || tree::key_comp()(key, found->first))
301 found = tree::unsafe_emplace(found, std::move(key), mapped_type());
302 return found->second;