Lines Matching refs:m_values
36 collection::iterator pos, end = m_values.end(); in DumpValue()
41 for (pos = m_values.begin(); pos != end; ++pos) { in DumpValue()
88 collection::const_iterator pos, end = m_values.end(); in GetArgs()
89 for (pos = m_values.begin(); pos != end; ++pos) { in GetArgs()
293 collection::const_iterator pos = m_values.find(key); in GetValueForKey()
294 if (pos != m_values.end()) in GetValueForKey()
306 collection::const_iterator pos = m_values.find(key); in SetValueForKey()
307 if (pos != m_values.end()) in SetValueForKey()
310 m_values[key] = value_sp; in SetValueForKey()
317 collection::iterator pos = m_values.find(key); in DeleteValueForKey()
318 if (pos != m_values.end()) { in DeleteValueForKey()
319 m_values.erase(pos); in DeleteValueForKey()
333 for (auto &value : dict_value_ptr->m_values) in DeepCopy()