Searched refs:OptionValueFormat (Results 1 – 8 of 8) sorted by relevance
19 void OptionValueFormat::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()30 Status OptionValueFormat::SetValueFromString(llvm::StringRef value, in SetValueFromString()61 lldb::OptionValueSP OptionValueFormat::DeepCopy() const { in DeepCopy()62 return OptionValueSP(new OptionValueFormat(*this)); in DeepCopy()
156 OptionValueFormat *OptionValue::GetAsFormat() { in GetAsFormat()158 return static_cast<OptionValueFormat *>(this); in GetAsFormat()162 const OptionValueFormat *OptionValue::GetAsFormat() const { in GetAsFormat()164 return static_cast<const OptionValueFormat *>(this); in GetAsFormat()348 const OptionValueFormat *option_value = GetAsFormat(); in GetFormatValue()355 OptionValueFormat *option_value = GetAsFormat(); in SetFormatValue()523 value_sp.reset(new OptionValueFormat(eFormatInvalid)); in CreateValueFromCStringForTypeMask()
126 m_value_sp.reset(new OptionValueFormat(new_format)); in Property()
17 class OptionValueFormat : public OptionValue {19 OptionValueFormat(lldb::Format value) in OptionValueFormat() function22 OptionValueFormat(lldb::Format current_value, lldb::Format default_value) in OptionValueFormat() function26 ~OptionValueFormat() override {} in ~OptionValueFormat()
50 OptionValueFormat &GetFormatValue() { return m_format; } in GetFormatValue()52 const OptionValueFormat &GetFormatValue() const { return m_format; } in GetFormatValue()74 OptionValueFormat m_format;
223 OptionValueFormat *GetAsFormat();225 const OptionValueFormat *GetAsFormat() const;
162 class OptionValueFormat; variable395 typedef std::shared_ptr<lldb_private::OptionValueFormat> OptionValueFormatSP;
280 SRCS+= Interpreter/OptionValueFormat.cpp