Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h39 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 DOptionValueDictionary.h44 m_values.clear(); in Clear()
59 size_t GetNumValues() const { return m_values.size(); } in GetNumValues()
82 llvm::StringMap<lldb::OptionValueSP> m_values; variable
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueArray.cpp29 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()
81 const uint32_t size = m_values.size(); in ToJSON()
83 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, error); in GetSubValue()
134 return m_values[new_idx]; in GetSubValue()
[all …]
H A DOptionValueDictionary.cpp42 for (const auto &value : m_values) { in DumpValue()
93 for (const auto &value : m_values) { in ToJSON()
101 for (const auto &value : m_values) { in GetArgs()
309 auto pos = m_values.find(key); in GetValueForKey()
310 if (pos != m_values.end()) in GetValueForKey()
322 auto pos = m_values.find(key); in SetValueForKey()
323 if (pos != m_values.end()) in SetValueForKey()
326 m_values[key] = value_sp; in SetValueForKey()
333 auto pos = m_values.find(key); in DeleteValueForKey()
334 if (pos != m_values.end()) { in DeleteValueForKey()
[all …]
H A DOptionValueArgs.cpp18 for (const auto &value : m_values) in GetArgs()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValueList.cpp26 : m_values(rhs.m_values), m_error(rhs.m_error.Clone()) {} in ValueListImpl()
31 m_values = rhs.m_values; in operator =()
36 uint32_t GetSize() { return m_values.size(); } in GetSize()
38 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append()
41 for (auto val : list.m_values) in Append()
48 return m_values[index]; in GetValueAtIndex()
52 for (auto val : m_values) { in FindValueByUID()
61 for (auto val : m_values) { in GetFirstValueByName()
74 std::vector<lldb::SBValue> m_values; member in ValueListImpl
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp695 void ValueList::PushValue(const Value &value) { m_values.push_back(value); } in PushValue()
697 size_t ValueList::GetSize() { return m_values.size(); } in GetSize()
701 return &(m_values[idx]); in GetValueAtIndex()
706 void ValueList::Clear() { m_values.clear(); } in Clear()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp96 ValueMap m_values; member in InterpreterStackFrame
139 ValueMap::iterator i = m_values.find(value); in SummarizeValue()
141 if (i != m_values.end()) { in SummarizeValue()
353 m_values[value] = data_address; in MakeArgument()
438 ValueMap::iterator i = m_values.find(value); in ResolveValue()
440 if (i != m_values.end()) in ResolveValue()
455 m_values[value] = data_address; in ResolveValue()
932 frame.m_values[alloca_inst] = P; in Interpret()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h205 collection m_values; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.h366 FunctionValueMap m_values; variable
H A DIRForTarget.cpp51 : 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()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp1445 std::vector<std::pair<int, StringRef>> m_values; member
3926 std::vector<T> m_values; member in Catch::Generators::FixedValuesGenerator
3929 FixedValuesGenerator( std::initializer_list<T> values ) : m_values( values ) {} in FixedValuesGenerator()
3932 return m_values[m_idx]; in get()
3936 return m_idx < m_values.size(); in next()
10493 for( auto const& valueToName : m_values ) { in lookup()
10503 enumInfo->m_values.reserve( values.size() ); in makeEnumInfo()
10509 enumInfo->m_values.push_back({ value, valueNames[i++] }); in makeEnumInfo()