Lines Matching refs:m_values
35 collection::iterator pos, end = m_values.end(); in DumpValue()
40 for (pos = m_values.begin(); pos != end; ++pos) { in DumpValue()
87 collection::const_iterator pos, end = m_values.end(); in GetArgs()
88 for (pos = m_values.begin(); pos != end; ++pos) { in GetArgs()
282 collection::const_iterator pos = m_values.find(key); in GetValueForKey()
283 if (pos != m_values.end()) in GetValueForKey()
295 collection::const_iterator pos = m_values.find(key); in SetValueForKey()
296 if (pos != m_values.end()) in SetValueForKey()
299 m_values[key] = value_sp; in SetValueForKey()
306 collection::iterator pos = m_values.find(key); in DeleteValueForKey()
307 if (pos != m_values.end()) { in DeleteValueForKey()
308 m_values.erase(pos); in DeleteValueForKey()
322 for (auto &value : dict_value_ptr->m_values) in DeepCopy()