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;
46 OptionValueFormat &GetFormatValue() { return m_format; } in GetFormatValue()48 const OptionValueFormat &GetFormatValue() const { return m_format; } in GetFormatValue()70 OptionValueFormat m_format;
214 OptionValueFormat *GetAsFormat();216 const OptionValueFormat *GetAsFormat() const;
154 OptionValueFormat *OptionValue::GetAsFormat() { in GetAsFormat()156 return static_cast<OptionValueFormat *>(this); in GetAsFormat()160 const OptionValueFormat *OptionValue::GetAsFormat() const { in GetAsFormat()162 return static_cast<const OptionValueFormat *>(this); in GetAsFormat()346 const OptionValueFormat *option_value = GetAsFormat(); in GetFormatValue()353 OptionValueFormat *option_value = GetAsFormat(); in SetFormatValue()523 value_sp = std::make_shared<OptionValueFormat>(eFormatInvalid); in CreateValueFromCStringForTypeMask()
18 void OptionValueFormat::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()29 Status OptionValueFormat::SetValueFromString(llvm::StringRef value, in SetValueFromString()
137 m_value_sp = std::make_shared<OptionValueFormat>(new_format); in Property()
142 class OptionValueFormat; variable367 typedef std::shared_ptr<lldb_private::OptionValueFormat> OptionValueFormatSP;
301 SRCS+= Interpreter/OptionValueFormat.cpp