| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueArray.h | 37 m_values.clear(); in Clear() 56 if (idx < m_values.size()) 57 value_sp = m_values[idx]; 63 if (idx < m_values.size()) in GetValueAtIndex() 64 value_sp = m_values[idx]; in GetValueAtIndex() 82 if (idx < m_values.size()) in InsertValue() 83 m_values.insert(m_values.begin() + idx, value_sp); in InsertValue() 96 m_values[idx] = value_sp; in ReplaceValue() 104 if (idx < m_values.size()) { in DeleteValue() 105 m_values.erase(m_values.begin() + idx); in DeleteValue() [all …]
|
| H A D | OptionValueDictionary.h | 39 m_values.clear(); in Clear() 54 size_t GetNumValues() const { return m_values.size(); } in GetNumValues() 78 collection m_values; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionValueArray.cpp | 30 const uint32_t size = m_values.size(); in DumpValue() 123 if (m_values[new_idx]) { in GetSubValue() 128 return m_values[new_idx]; in GetSubValue() 149 const uint32_t size = m_values.size(); in GetArgs() 186 if (idx >= m_values.size()) in SetArgs() 187 m_values.push_back(value_sp); in SetArgs() 189 m_values.insert(m_values.begin() + idx, value_sp); in SetArgs() 229 m_values.erase(m_values.begin() + *pos); in SetArgs() 233 m_values.erase(m_values.begin() + remove_indexes.front()); in SetArgs() 267 m_values[idx] = value_sp; in SetArgs() [all …]
|
| H A D | OptionValueDictionary.cpp | 35 collection::iterator pos, end = m_values.end(); in DumpValue() 40 for (pos = m_values.begin(); pos != end; ++pos) { in DumpValue() 87 collection::const_iterator pos, end = m_values.end(); in GetArgs() 88 for (pos = m_values.begin(); pos != end; ++pos) { in GetArgs() 283 if (pos != m_values.end()) in GetValueForKey() 296 if (pos != m_values.end()) in SetValueForKey() 299 m_values[key] = value_sp; in SetValueForKey() 306 collection::iterator pos = m_values.find(key); in DeleteValueForKey() 307 if (pos != m_values.end()) { in DeleteValueForKey() 308 m_values.erase(pos); in DeleteValueForKey() [all …]
|
| H A D | OptionValueArgs.cpp | 18 for (const auto &value : m_values) { in GetArgs()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBValueList.cpp | 22 ValueListImpl() : m_values() {} in ValueListImpl() 24 ValueListImpl(const ValueListImpl &rhs) : m_values(rhs.m_values) {} in ValueListImpl() 29 m_values = rhs.m_values; in operator =() 33 uint32_t GetSize() { return m_values.size(); } in GetSize() 35 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append() 38 for (auto val : list.m_values) in Append() 45 return m_values[index]; in GetValueAtIndex() 49 for (auto val : m_values) { in FindValueByUID() 58 for (auto val : m_values) { in GetFirstValueByName() 67 std::vector<lldb::SBValue> m_values; member in ValueListImpl
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 668 ValueList::ValueList(const ValueList &rhs) { m_values = rhs.m_values; } in ValueList() 671 m_values = rhs.m_values; in operator =() 675 void ValueList::PushValue(const Value &value) { m_values.push_back(value); } in PushValue() 677 size_t ValueList::GetSize() { return m_values.size(); } in GetSize() 681 return &(m_values[idx]); in GetValueAtIndex() 686 void ValueList::Clear() { m_values.clear(); } in Clear()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 159 ValueList() : m_values() {} in ValueList() 177 collection m_values; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 95 ValueMap m_values; member in InterpreterStackFrame 139 ValueMap::iterator i = m_values.find(value); in SummarizeValue() 141 if (i != m_values.end()) { in SummarizeValue() 326 m_values[value] = data_address; in MakeArgument() 412 ValueMap::iterator i = m_values.find(value); in ResolveValue() 414 if (i != m_values.end()) in ResolveValue() 429 m_values[value] = data_address; in ResolveValue() 855 frame.m_values[alloca_inst] = P; in Interpret()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRForTarget.h | 458 FunctionValueMap m_values; variable
|
| H A D | IRForTarget.cpp | 48 : m_maker(maker), m_values() {} in FunctionValueCache() 54 if (!m_values.count(function)) { in GetValue() 56 m_values[function] = ret; in GetValue() 59 return m_values[function]; in GetValue()
|
| /freebsd-13.1/contrib/bsnmp/tests/ |
| H A D | catch.hpp | 1445 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()
|