Lines Matching refs:values_
240 auto it = values_.find(key); in GetKey()
241 if (it == values_.end()) in GetKey()
249 using value_type = decltype(values_)::value_type; in GetSubKeys()
250 using key_type = decltype(values_)::key_type; in GetSubKeys()
258 std::lower_bound(begin(values_), end(values_), ns, lower_comp); in GetSubKeys()
259 auto upper_it = std::upper_bound(lower_it, end(values_), ns, upper_comp); in GetSubKeys()
267 values_[key] = value; in SetKey()
272 return values_.find(key) != values_.end(); in KeyExists()
276 auto it = values_.find(key); in DeleteKey()
277 if (it != values_.end()) in DeleteKey()
278 values_.erase(it); in DeleteKey()