Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp21 void OptionValueDictionary::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
91 OptionValueDictionary::ToJSON(const ExecutionContext *exe_ctx) { in ToJSON()
99 size_t OptionValueDictionary::GetArgs(Args &args) const { in GetArgs()
110 Status OptionValueDictionary::SetArgs(const Args &args, in SetArgs()
226 Status OptionValueDictionary::SetValueFromString(llvm::StringRef value, in SetValueFromString()
236 OptionValueDictionary::GetSubValue(const ExecutionContext *exe_ctx, in GetSubValue()
285 Status OptionValueDictionary::SetSubValue(const ExecutionContext *exe_ctx, in SetSubValue()
301 OptionValueDictionary::GetValueForKey(llvm::StringRef key) const { in GetValueForKey()
309 bool OptionValueDictionary::SetValueForKey(llvm::StringRef key, in SetValueForKey()
326 bool OptionValueDictionary::DeleteValueForKey(llvm::StringRef key) { in DeleteValueForKey()
[all …]
H A DOptionValue.cpp129 OptionValueDictionary *OptionValue::GetAsDictionary() { in GetAsDictionary()
131 return static_cast<OptionValueDictionary *>(this); in GetAsDictionary()
135 const OptionValueDictionary *OptionValue::GetAsDictionary() const { in GetAsDictionary()
137 return static_cast<const OptionValueDictionary *>(this); in GetAsDictionary()
H A DOptionValueProperties.cpp205 const OptionValueDictionary *dict = value->GetAsDictionary(); in GetPropertyAtIndexAsArgs()
232 OptionValueDictionary *dict = value->GetAsDictionary(); in SetPropertyAtIndexFromArgs()
239 OptionValueDictionary *
H A DProperty.cpp71 m_value_sp = std::make_shared<OptionValueDictionary>( in Property()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h19 class OptionValueDictionary
20 : public Cloneable<OptionValueDictionary, OptionValue> {
22 OptionValueDictionary(uint32_t type_mask = UINT32_MAX,
28 ~OptionValueDictionary() override = default;
H A DOptionValue.h209 OptionValueDictionary *GetAsDictionary();
210 const OptionValueDictionary *GetAsDictionary() const;
H A DOptionValueProperties.h111 OptionValueDictionary *GetPropertyAtIndexAsOptionValueDictionary(
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.h35 bool LoadStateFromDictionary(lldb_private::OptionValueDictionary *test_data);
64 lldb_private::OptionValueDictionary *reg_dict, char kind, int first_reg,
H A DEmulationStateARM.cpp261 OptionValueDictionary *reg_dict, char kind, int first_reg, int num) { in LoadRegistersStateFromDictionary()
277 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 DEmulateInstructionARM.h136 OptionValueDictionary *test_data) override;
H A DEmulateInstructionARM.cpp18 #include "lldb/Interpreter/OptionValueDictionary.h"
14350 OptionValueDictionary *test_data) { in TestEmulation()
14395 OptionValueDictionary *state_dictionary = value_sp->GetAsDictionary(); in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h24 class OptionValueDictionary; variable
80 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h61 OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h66 OptionValueDictionary *test_data) override;
H A DEmulateInstructionRISCV.cpp18 #include "lldb/Interpreter/OptionValueDictionary.h"
1767 OptionValueDictionary *test_data) { in CreateInstance()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.h56 OptionValueDictionary *test_data) override;
H A DEmulateInstructionLoongArch.cpp190 Stream &out_stream, ArchSpec &arch, OptionValueDictionary *test_data) { in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h29 class OptionValueDictionary; variable
381 OptionValueDictionary *test_data) = 0;
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h65 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h72 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp22 #include "lldb/Interpreter/OptionValueDictionary.h"
765 auto option_value_sp = std::make_shared<OptionValueDictionary>(); in ReadDictionary()
891 // OptionValueDictionary. in TestEmulation()
903 OptionValueDictionary *data_dictionary = in TestEmulation()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h147 class OptionValueDictionary;
145 class OptionValueDictionary; global() variable
/freebsd-src/lib/clang/liblldb/
H A DMakefile320 SRCS+= Interpreter/OptionValueDictionary.cpp