Home
last modified time | relevance | path

Searched refs:OptionValueDictionary (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp21 void OptionValueDictionary::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
85 size_t OptionValueDictionary::GetArgs(Args &args) const { in GetArgs()
97 Status OptionValueDictionary::SetArgs(const Args &args, in SetArgs()
203 Status OptionValueDictionary::SetValueFromString(llvm::StringRef value, in SetValueFromString()
213 OptionValueDictionary::GetSubValue(const ExecutionContext *exe_ctx, in GetSubValue()
280 OptionValueDictionary::GetValueForKey(const ConstString &key) const { in GetValueForKey()
288 bool OptionValueDictionary::SetValueForKey(const ConstString &key, in SetValueForKey()
305 bool OptionValueDictionary::DeleteValueForKey(const ConstString &key) { in DeleteValueForKey()
314 lldb::OptionValueSP OptionValueDictionary::DeepCopy() const { in DeepCopy()
315 OptionValueDictionary *copied_dict = in DeepCopy()
[all …]
H A DOptionValue.cpp132 OptionValueDictionary *OptionValue::GetAsDictionary() { in GetAsDictionary()
134 return static_cast<OptionValueDictionary *>(this); in GetAsDictionary()
138 const OptionValueDictionary *OptionValue::GetAsDictionary() const { in GetAsDictionary()
140 return static_cast<const OptionValueDictionary *>(this); in GetAsDictionary()
H A DOptionValueProperties.cpp294 const OptionValueDictionary *dict = value->GetAsDictionary(); in GetPropertyAtIndexAsArgs()
313 OptionValueDictionary *dict = value->GetAsDictionary(); in SetPropertyAtIndexFromArgs()
346 OptionValueDictionary *
H A DProperty.cpp68 m_value_sp.reset(new OptionValueDictionary(OptionValue::ConvertTypeToMask( in Property()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h19 class OptionValueDictionary : public OptionValue {
21 OptionValueDictionary(uint32_t type_mask = UINT32_MAX,
26 ~OptionValueDictionary() override {} in ~OptionValueDictionary()
H A DOptionValue.h207 OptionValueDictionary *GetAsDictionary();
209 const OptionValueDictionary *GetAsDictionary() const;
H A DOptionValueProperties.h141 OptionValueDictionary *
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp277 OptionValueDictionary *test_data) { in LoadStateFromDictionary()
293 OptionValueDictionary *mem_dict = value_sp->GetAsDictionary(); in LoadStateFromDictionary()
324 OptionValueDictionary *reg_dict = value_sp->GetAsDictionary(); in LoadStateFromDictionary()
H A DEmulationStateARM.h38 bool LoadStateFromDictionary(lldb_private::OptionValueDictionary *test_data);
H A DEmulateInstructionARM.h140 OptionValueDictionary *test_data) override;
H A DEmulateInstructionARM.cpp14431 OptionValueDictionary *test_data) { in TestEmulation()
14476 OptionValueDictionary *state_dictionary = value_sp->GetAsDictionary(); in TestEmulation()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h63 OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DEmulateInstruction.h28 class OptionValueDictionary; variable
388 OptionValueDictionary *test_data) = 0;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h67 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h74 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h79 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h158 class OptionValueDictionary; variable
389 typedef std::shared_ptr<lldb_private::OptionValueDictionary>
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp828 auto option_value_sp = std::make_shared<OptionValueDictionary>(); in ReadDictionary()
970 OptionValueDictionary *data_dictionary = in TestEmulation()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile276 SRCS+= Interpreter/OptionValueDictionary.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp3534 OptionValueDictionary *env_dict = in GetHostEnvironmentIfNeeded()