Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueArray.cpp18 void OptionValueArray::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
79 Status OptionValueArray::SetValueFromString(llvm::StringRef value, in SetValueFromString()
89 OptionValueArray::GetSubValue(const ExecutionContext *exe_ctx, in GetSubValue()
147 size_t OptionValueArray::GetArgs(Args &args) const { in GetArgs()
159 Status OptionValueArray::SetArgs(const Args &args, VarSetOperationType op) { in SetArgs()
307 OptionValueArray::DeepCopy(const OptionValueSP &new_parent) const { in DeepCopy()
311 auto *array_value_ptr = static_cast<OptionValueArray *>(copy_sp.get()); in DeepCopy()
H A DOptionValue.cpp106 OptionValueArray *OptionValue::GetAsArray() { in GetAsArray()
108 return static_cast<OptionValueArray *>(this); in GetAsArray()
112 const OptionValueArray *OptionValue::GetAsArray() const { in GetAsArray()
114 return static_cast<const OptionValueArray *>(this); in GetAsArray()
H A DProperty.cpp46 std::make_shared<OptionValueArray>(OptionValue::ConvertTypeToMask( in Property()
H A DOptionValueProperties.cpp242 const OptionValueArray *array = value->GetAsArray(); in GetPropertyAtIndexAsArgs()
267 OptionValueArray *array = value->GetAsArray(); in SetPropertyAtIndexFromArgs()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h18 class OptionValueArray : public Cloneable<OptionValueArray, OptionValue> {
20 OptionValueArray(uint32_t type_mask = UINT32_MAX, bool raw_value_dump = false)
23 ~OptionValueArray() override = default;
H A DOptionValueArgs.h16 class OptionValueArgs : public Cloneable<OptionValueArgs, OptionValueArray> {
H A DOptionValue.h182 OptionValueArray *GetAsArray();
184 const OptionValueArray *GetAsArray() const;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h135 class OptionValueArray; variable
359 typedef std::shared_ptr<lldb_private::OptionValueArray> OptionValueArraySP;
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegister.cpp286 OptionValueArray set_indexes;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp300 OptionValueArray *mem_array = value_sp->GetAsArray(); in LoadStateFromDictionary()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp664 auto option_value_sp = std::make_shared<OptionValueArray>(1u << data_type); in ReadArray()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile293 SRCS+= Interpreter/OptionValueArray.cpp