Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueArray.cpp19 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()
306 lldb::OptionValueSP OptionValueArray::DeepCopy() const { in DeepCopy()
307 OptionValueArray *copied_array = in DeepCopy()
308 new OptionValueArray(m_type_mask, m_raw_value_dump); in DeepCopy()
H A DOptionValue.cpp108 OptionValueArray *OptionValue::GetAsArray() { in GetAsArray()
110 return static_cast<OptionValueArray *>(this); in GetAsArray()
114 const OptionValueArray *OptionValue::GetAsArray() const { in GetAsArray()
116 return static_cast<const OptionValueArray *>(this); in GetAsArray()
H A DProperty.cpp43 m_value_sp.reset(new OptionValueArray(OptionValue::ConvertTypeToMask( in Property()
H A DOptionValueProperties.cpp290 const OptionValueArray *array = value->GetAsArray(); in GetPropertyAtIndexAsArgs()
309 OptionValueArray *array = value->GetAsArray(); in SetPropertyAtIndexFromArgs()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueArgs.h17 class OptionValueArgs : public OptionValueArray {
20 : OptionValueArray( in OptionValueArgs()
H A DOptionValueArray.h19 class OptionValueArray : public OptionValue {
21 OptionValueArray(uint32_t type_mask = UINT32_MAX, bool raw_value_dump = false)
24 ~OptionValueArray() override {} in ~OptionValueArray()
H A DOptionValue.h191 OptionValueArray *GetAsArray();
193 const OptionValueArray *GetAsArray() const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h155 class OptionValueArray; variable
387 typedef std::shared_ptr<lldb_private::OptionValueArray> OptionValueArraySP;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectRegister.cpp292 OptionValueArray set_indexes;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp301 OptionValueArray *mem_array = value_sp->GetAsArray(); in LoadStateFromDictionary()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp769 auto option_value_sp = std::make_shared<OptionValueArray>(1u << data_type); in ReadArray()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile273 SRCS+= Interpreter/OptionValueArray.cpp