Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFormat.h16 class OptionValueFormat
17 : public Cloneable<OptionValueFormat, OptionValue> {
19 OptionValueFormat(lldb::Format value) in OptionValueFormat() function
22 OptionValueFormat(lldb::Format current_value, lldb::Format default_value) in OptionValueFormat() function
25 ~OptionValueFormat() override = default;
H A DOptionGroupFormat.h52 OptionValueFormat &GetFormatValue() { return m_format; } in GetFormatValue()
54 const OptionValueFormat &GetFormatValue() const { return m_format; } in GetFormatValue()
76 OptionValueFormat m_format;
H A DOptionValue.h221 OptionValueFormat *GetAsFormat();
222 const OptionValueFormat *GetAsFormat() const;
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFormat.cpp18 void OptionValueFormat::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
29 llvm::json::Value OptionValueFormat::ToJSON(const ExecutionContext *exe_ctx) { in ToJSON()
33 Status OptionValueFormat::SetValueFromString(llvm::StringRef value, in SetValueFromString()
H A DOptionValue.cpp153 OptionValueFormat *OptionValue::GetAsFormat() { in GetAsFormat()
155 return static_cast<OptionValueFormat *>(this); in GetAsFormat()
159 const OptionValueFormat *OptionValue::GetAsFormat() const { in GetAsFormat()
161 return static_cast<const OptionValueFormat *>(this); in GetAsFormat()
355 if (const OptionValueFormat *option_value = GetAsFormat()) in GetFormatValue()
362 if (OptionValueFormat *option_value = GetAsFormat()) { in SetFormatValue()
546 value_sp = std::make_shared<OptionValueFormat>(eFormatInvalid); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp137 m_value_sp = std::make_shared<OptionValueFormat>(new_format); in Property()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h149 class OptionValueFormat; variable
/freebsd-14.2/lib/clang/liblldb/
H A DMakefile318 SRCS+= Interpreter/OptionValueFormat.cpp