Searched refs:m_values (Results 1 – 11 of 11) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueArray.h | 39 m_values.clear(); in Clear() 54 size_t GetSize() const { return m_values.size(); } in GetSize() 58 if (idx < m_values.size()) 59 value_sp = m_values[idx]; 65 if (idx < m_values.size()) in GetValueAtIndex() 66 value_sp = m_values[idx]; in GetValueAtIndex() 74 m_values.push_back(value_sp); in AppendValue() 84 if (idx < m_values.size()) in InsertValue() 85 m_values.insert(m_values.begin() + idx, value_sp); in InsertValue() 87 m_values.push_back(value_sp); in InsertValue() [all …]
|
| H A D | OptionValueDictionary.h | 44 m_values.clear(); in Clear() 59 size_t GetNumValues() const { return m_values.size(); } in GetNumValues() 84 collection m_values; variable
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | OptionValueArray.cpp | 29 const uint32_t size = m_values.size(); in DumpValue() 31 strm.Printf(" =%s", (m_values.size() > 0 && !one_line) ? "\n" : ""); in DumpValue() 47 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options); in DumpValue() 61 m_values[i]->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | in DumpValue() 80 const uint32_t size = m_values.size(); in ToJSON() 82 json_array.emplace_back(m_values[i]->ToJSON(exe_ctx)); in ToJSON() 115 const size_t array_count = m_values.size(); in GetSubValue() 130 if (m_values[new_idx]) { in GetSubValue() 132 return m_values[new_idx]->GetSubValue(exe_ctx, sub_value, in GetSubValue() 135 return m_values[new_idx]; in GetSubValue() [all …]
|
| H A D | OptionValueDictionary.cpp | 36 collection::iterator pos, end = m_values.end(); in DumpValue() 41 for (pos = m_values.begin(); pos != end; ++pos) { in DumpValue() 89 for (const auto &value : m_values) { in ToJSON() 97 collection::const_iterator pos, end = m_values.end(); in GetArgs() 98 for (pos = m_values.begin(); pos != end; ++pos) { in GetArgs() 302 collection::const_iterator pos = m_values.find(key); in GetValueForKey() 303 if (pos != m_values.end()) in GetValueForKey() 315 collection::const_iterator pos = m_values.find(key); in SetValueForKey() 316 if (pos != m_values.end()) in SetValueForKey() 319 m_values[key] = value_sp; in SetValueForKey() [all …]
|
| H A D | OptionValueArgs.cpp | 18 for (const auto &value : m_values) { in GetArgs()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBValueList.cpp | 30 m_values = rhs.m_values; in operator =() 35 uint32_t GetSize() { return m_values.size(); } in GetSize() 37 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append() 40 for (auto val : list.m_values) in Append() 47 return m_values[index]; in GetValueAtIndex() 51 for (auto val : m_values) { in FindValueByUID() 60 for (auto val : m_values) { in GetFirstValueByName() 73 std::vector<lldb::SBValue> m_values; member in ValueListImpl
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | Value.cpp | 666 void ValueList::PushValue(const Value &value) { m_values.push_back(value); } in PushValue() 668 size_t ValueList::GetSize() { return m_values.size(); } in GetSize() 672 return &(m_values[idx]); in GetValueAtIndex() 677 void ValueList::Clear() { m_values.clear(); } in Clear()
|
| /openbsd-src/gnu/llvm/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 97 ValueMap m_values; member in InterpreterStackFrame 140 ValueMap::iterator i = m_values.find(value); in SummarizeValue() 142 if (i != m_values.end()) { in SummarizeValue() 354 m_values[value] = data_address; in MakeArgument() 439 ValueMap::iterator i = m_values.find(value); in ResolveValue() 441 if (i != m_values.end()) in ResolveValue() 456 m_values[value] = data_address; in ResolveValue() 911 frame.m_values[alloca_inst] = P; in Interpret()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | Value.h | 175 collection m_values; variable
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRForTarget.h | 458 FunctionValueMap m_values; variable
|
| H A D | IRForTarget.cpp | 51 : m_maker(maker), m_values() {} in FunctionValueCache() 57 if (!m_values.count(function)) { in GetValue() 59 m_values[function] = ret; in GetValue() 62 return m_values[function]; in GetValue()
|