Lines Matching refs:values_
216 auto it = values_.find(key); in GetKey()
217 if (it == values_.end()) in GetKey()
225 using value_type = decltype(values_)::value_type; in GetSubKeys()
226 using key_type = decltype(values_)::key_type; in GetSubKeys()
234 std::lower_bound(begin(values_), end(values_), ns, lower_comp); in GetSubKeys()
235 auto upper_it = std::upper_bound(lower_it, end(values_), ns, upper_comp); in GetSubKeys()
243 values_[key] = value; in SetKey()
248 return values_.find(key) != values_.end(); in KeyExists()
252 auto it = values_.find(key); in DeleteKey()
253 if (it != values_.end()) in DeleteKey()
254 values_.erase(it); in DeleteKey()