Searched refs:m_values (Results 1 – 11 of 11) sorted by relevance
| /trueos/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| HD | OptionValueArray.h | 28 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 …]
|
| HD | OptionValueDictionary.h | 29 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/ |
| HD | OptionValueArray.cpp | 36 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() 64 … m_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 …]
|
| HD | OptionValueDictionary.cpp | 43 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 …]
|
| HD | OptionValueArgs.cpp | 24 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/ |
| HD | SBValueList.cpp | 26 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/ |
| HD | Value.cpp | 738 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/ |
| HD | Value.h | 285 m_values() in ValueList() 309 collection m_values; variable
|
| /trueos/contrib/llvm/tools/lldb/source/Expression/ |
| HD | IRInterpreter.cpp | 66 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()
|
| HD | IRForTarget.cpp | 53 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/ |
| HD | IRForTarget.h | 693 FunctionValueMap m_values; variable
|