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()
80 const uint32_t size = m_values.size(); in ToJSON()
82 json_array.emplace_back(m_values[i]->ToJSON(exe_ctx)); in ToJSON()
114 const size_t array_count = m_values.size(); in GetSubValue()
129 if (m_values[new_idx]) { in GetSubValue()
131 return m_values[new_idx]->GetSubValue(exe_ctx, sub_value, error); in GetSubValue()
133 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()
303 auto pos = m_values.find(key); in GetValueForKey()
304 if (pos != m_values.end()) in GetValueForKey()
316 auto pos = m_values.find(key); in SetValueForKey()
317 if (pos != m_values.end()) in SetValueForKey()
320 m_values[key] = value_sp; in SetValueForKey()
327 auto pos = m_values.find(key); in DeleteValueForKey()
328 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.cpp30 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
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp682 void ValueList::PushValue(const Value &value) { m_values.push_back(value); } in GetSize()
684 size_t ValueList::GetSize() { return m_values.size(); } in GetValueAtIndex()
688 return &(m_values[idx]); in GetValueAtIndex()
693 void ValueList::Clear() { m_values.clear(); }
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp98 ValueMap m_values; member in InterpreterStackFrame
141 ValueMap::iterator i = m_values.find(value); in SummarizeValue()
143 if (i != m_values.end()) { in SummarizeValue()
355 m_values[value] = data_address; in MakeArgument()
440 ValueMap::iterator i = m_values.find(value); in ResolveValue()
442 if (i != m_values.end()) in ResolveValue()
457 m_values[value] = data_address; in ResolveValue()
941 frame.m_values[alloca_inst] = P; in Interpret()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h177 collection m_values; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.h366 FunctionValueMap m_values;
433 FunctionValueMap m_values; global() 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()