Searched refs:OptionValueFormat (Results 1 – 8 of 8) sorted by relevance
16 class OptionValueFormat17 : public Cloneable<OptionValueFormat, OptionValue> {19 OptionValueFormat(lldb::Format value) in OptionValueFormat() function22 OptionValueFormat(lldb::Format current_value, lldb::Format default_value) in OptionValueFormat() function25 ~OptionValueFormat() override = default;
52 OptionValueFormat &GetFormatValue() { return m_format; } in GetFormatValue()54 const OptionValueFormat &GetFormatValue() const { return m_format; } in GetFormatValue()76 OptionValueFormat m_format;
221 OptionValueFormat *GetAsFormat();222 const OptionValueFormat *GetAsFormat() const;
18 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()
153 OptionValueFormat *OptionValue::GetAsFormat() { in GetAsLanguage() 155 return static_cast<OptionValueFormat *>(this); in GetAsLanguage() 159 const OptionValueFormat *OptionValue::GetAsFormat() const { in GetAsFormatEntity() 161 return static_cast<const OptionValueFormat *>(this); in GetAsFormatEntity() 355 if (const OptionValueFormat *option_value = GetAsFormat()) in GetFormatEntity() 362 if (OptionValueFormat *option_value = GetAsFormat()) { in GetRegexValue() 546 value_sp = std::make_shared<OptionValueFormat>(eFormatInvalid); in DumpQualifiedName()
137 m_value_sp = std::make_shared<OptionValueFormat>(new_format); in Property()
151 class OptionValueFormat; variable
325 SRCS+= Interpreter/OptionValueFormat.cpp