Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDOptionValueArray.h28 m_values (), in m_type_mask()
58 m_values.clear(); in Clear()
85 return m_values.size(); in GetSize()
92 if (idx < m_values.size())
93 value_sp = m_values[idx];
101 if (idx < m_values.size()) in GetValueAtIndex()
102 value_sp = m_values[idx]; in GetValueAtIndex()
113 m_values.push_back(value_sp); in AppendValue()
126 if (idx < m_values.size()) in InsertValue()
127 m_values.insert(m_values.begin() + idx, value_sp); in InsertValue()
[all …]
HDOptionValueDictionary.h29 m_values (), in OptionValue()
59 m_values.clear(); in Clear()
86 return m_values.size(); in GetNumValues()
133 collection m_values; variable
/trueos/contrib/llvm/tools/lldb/source/Interpreter/
HDOptionValueArray.cpp36 strm.Printf (" =%s", (m_values.size() > 0) ? "\n" : ""); in DumpValue()
38 const uint32_t size = m_values.size(); in DumpValue()
52 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options); in DumpValue()
64m_values[i]->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | extra_dump_options); in DumpValue()
97 const size_t array_count = m_values.size(); in GetSubValue()
116 if (m_values[new_idx]) in GetSubValue()
119 … return m_values[new_idx]->GetSubValue (exe_ctx, sub_value, will_modify, error); in GetSubValue()
121 return m_values[new_idx]; in GetSubValue()
147 const uint32_t size = m_values.size(); in GetArgs()
151 const char *string_value = m_values[i]->GetStringValue (); in GetArgs()
[all …]
HDOptionValueDictionary.cpp43 collection::iterator pos, end = m_values.end(); in DumpValue()
47 for (pos = m_values.begin(); pos != end; ++pos) in DumpValue()
89 collection::const_iterator pos, end = m_values.end(); in GetArgs()
90 for (pos = m_values.begin(); pos != end; ++pos) in GetArgs()
348 collection::const_iterator pos = m_values.find (key); in GetValueForKey()
349 if (pos != m_values.end()) in GetValueForKey()
357 collection::const_iterator pos = m_values.find (key); in GetStringValueForKey()
358 if (pos != m_values.end()) in GetStringValueForKey()
373 collection::const_iterator pos = m_values.find (key); in SetStringValueForKey()
374 if (pos != m_values.end()) in SetStringValueForKey()
[all …]
HDOptionValueArgs.cpp24 const uint32_t size = m_values.size(); in GetArgs()
28 const char *string_value = m_values[i]->GetStringValue (); in GetArgs()
/trueos/contrib/llvm/tools/lldb/source/API/
HDSBValueList.cpp26 m_values() in ValueListImpl()
31 m_values(rhs.m_values) in ValueListImpl()
40 m_values = rhs.m_values; in operator =()
47 return m_values.size(); in GetSize()
53 m_values.push_back(sb_value); in Append()
59 for (auto val : list.m_values) in Append()
68 return m_values[index]; in GetValueAtIndex()
74 for (auto val : m_values) in FindValueByUID()
83 std::vector<lldb::SBValue> m_values; member in ValueListImpl
/trueos/contrib/llvm/tools/lldb/source/Core/
HDValue.cpp738 m_values = rhs.m_values; in ValueList()
744 m_values = rhs.m_values; in operator =()
751 m_values.push_back (value); in PushValue()
757 return m_values.size(); in GetSize()
765 return &(m_values[idx]); in GetValueAtIndex()
774 m_values.clear(); in Clear()
/trueos/contrib/llvm/tools/lldb/include/lldb/Core/
HDValue.h285 m_values() in ValueList()
309 collection m_values; variable
/trueos/contrib/llvm/tools/lldb/source/Expression/
HDIRInterpreter.cpp66 ValueMap m_values; member in InterpreterStackFrame
112 ValueMap::iterator i = m_values.find(value); in SummarizeValue()
114 if (i != m_values.end()) in SummarizeValue()
304 m_values[value] = data_address; in MakeArgument()
396 ValueMap::iterator i = m_values.find(value); in ResolveValue()
398 if (i != m_values.end()) in ResolveValue()
415 m_values[value] = data_address; in ResolveValue()
805 frame.m_values[alloca_inst] = P; in Interpret()
HDIRForTarget.cpp53 m_values() in FunctionValueCache()
63 if (!m_values.count(function)) in GetValue()
66 m_values[function] = ret; in GetValue()
69 return m_values[function]; in GetValue()
/trueos/contrib/llvm/tools/lldb/include/lldb/Expression/
HDIRForTarget.h693 FunctionValueMap m_values; variable