Home
last modified time | relevance | path

Searched refs:OptionValueUUID (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueUUID.cpp20 void OptionValueUUID::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
31 Status OptionValueUUID::SetValueFromString(llvm::StringRef value, in SetValueFromString()
62 lldb::OptionValueSP OptionValueUUID::DeepCopy() const { in DeepCopy()
63 return OptionValueSP(new OptionValueUUID(*this)); in DeepCopy()
66 size_t OptionValueUUID::AutoComplete(CommandInterpreter &interpreter, in AutoComplete()
H A DOptionValue.cpp264 OptionValueUUID *OptionValue::GetAsUUID() { in GetAsUUID()
266 return static_cast<OptionValueUUID *>(this); in GetAsUUID()
270 const OptionValueUUID *OptionValue::GetAsUUID() const { in GetAsUUID()
272 return static_cast<const OptionValueUUID *>(this); in GetAsUUID()
443 const OptionValueUUID *option_value = GetAsUUID(); in GetUUIDValue()
450 OptionValueUUID *option_value = GetAsUUID(); in SetUUIDValue()
541 value_sp.reset(new OptionValueUUID()); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp196 m_value_sp.reset(new OptionValueUUID(uuid)); in Property()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h18 class OptionValueUUID : public OptionValue {
20 OptionValueUUID() : OptionValue(), m_uuid() {} in OptionValueUUID() function
22 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {} in OptionValueUUID() function
24 ~OptionValueUUID() override {} in ~OptionValueUUID()
H A DOptionGroupUUID.h36 const OptionValueUUID &GetOptionValue() const { return m_uuid; } in GetOptionValue()
39 OptionValueUUID m_uuid;
H A DOptionValue.h255 OptionValueUUID *GetAsUUID();
257 const OptionValueUUID *GetAsUUID() const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h171 class OptionValueUUID; variable
404 typedef std::shared_ptr<lldb_private::OptionValueUUID> OptionValueUUIDSP;
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile289 SRCS+= Interpreter/OptionValueUUID.cpp