Home
last modified time | relevance | path

Searched refs:m_values (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h37 m_values.clear(); in Clear()
56 if (idx < m_values.size())
57 value_sp = m_values[idx];
63 if (idx < m_values.size()) in GetValueAtIndex()
64 value_sp = m_values[idx]; in GetValueAtIndex()
82 if (idx < m_values.size()) in InsertValue()
83 m_values.insert(m_values.begin() + idx, value_sp); in InsertValue()
96 m_values[idx] = value_sp; in ReplaceValue()
104 if (idx < m_values.size()) { in DeleteValue()
105 m_values.erase(m_values.begin() + idx); in DeleteValue()
[all …]
H A DOptionValueDictionary.h42 m_values.clear(); in Clear()
57 size_t GetNumValues() const { return m_values.size(); } in GetNumValues()
82 collection m_values; variable
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValueArray.cpp29 const uint32_t size = m_values.size(); in DumpValue()
122 if (m_values[new_idx]) { in GetSubValue()
127 return m_values[new_idx]; in GetSubValue()
148 const uint32_t size = m_values.size(); in GetArgs()
184 if (idx >= m_values.size()) in SetArgs()
185 m_values.push_back(value_sp); in SetArgs()
187 m_values.insert(m_values.begin() + idx, value_sp); in SetArgs()
226 m_values.erase(m_values.begin() + *pos); in SetArgs()
230 m_values.erase(m_values.begin() + remove_indexes.front()); in SetArgs()
263 m_values[idx] = value_sp; in SetArgs()
[all …]
H A DOptionValueDictionary.cpp36 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()
294 if (pos != m_values.end()) in GetValueForKey()
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()
[all …]
H A DOptionValueArgs.cpp18 for (const auto &value : m_values) { in GetArgs()
/llvm-project-15.0.7/lldb/source/API/
H A DSBValueList.cpp29 m_values = rhs.m_values; in operator =()
33 uint32_t GetSize() { return m_values.size(); } in GetSize()
35 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append()
38 for (auto val : list.m_values) in Append()
45 return m_values[index]; in GetValueAtIndex()
49 for (auto val : m_values) { in FindValueByUID()
58 for (auto val : m_values) { in GetFirstValueByName()
67 std::vector<lldb::SBValue> m_values; member in ValueListImpl
/llvm-project-15.0.7/lldb/source/Core/
H A DValue.cpp665 void ValueList::PushValue(const Value &value) { m_values.push_back(value); } in PushValue()
667 size_t ValueList::GetSize() { return m_values.size(); } in GetSize()
671 return &(m_values[idx]); in GetValueAtIndex()
676 void ValueList::Clear() { m_values.clear(); } in Clear()
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRInterpreter.cpp97 ValueMap m_values; member in InterpreterStackFrame
140 ValueMap::iterator i = m_values.find(value); in SummarizeValue()
142 if (i != m_values.end()) { in SummarizeValue()
329 m_values[value] = data_address; in MakeArgument()
414 ValueMap::iterator i = m_values.find(value); in ResolveValue()
416 if (i != m_values.end()) in ResolveValue()
431 m_values[value] = data_address; in ResolveValue()
863 frame.m_values[alloca_inst] = P; in Interpret()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValue.h175 collection m_values; variable
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.h458 FunctionValueMap m_values; variable
H A DIRForTarget.cpp50 : m_maker(maker), m_values() {} in FunctionValueCache()
56 if (!m_values.count(function)) { in GetValue()
58 m_values[function] = ret; in GetValue()
61 return m_values[function]; in GetValue()