Home
last modified time | relevance | path

Searched refs:OptionValueFormatEntity (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/Interpreter/
DOptionValueFormatEntity.cpp18 OptionValueFormatEntity::OptionValueFormatEntity(const char *default_format) in OptionValueFormatEntity() function in OptionValueFormatEntity
32 void OptionValueFormatEntity::Clear() { in Clear()
52 void OptionValueFormatEntity::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
65 Status OptionValueFormatEntity::SetValueFromString(llvm::StringRef value_str, in SetValueFromString()
114 lldb::OptionValueSP OptionValueFormatEntity::DeepCopy() const { in DeepCopy()
115 return OptionValueSP(new OptionValueFormatEntity(*this)); in DeepCopy()
118 void OptionValueFormatEntity::AutoComplete(CommandInterpreter &interpreter, in AutoComplete()
DOptionValue.cpp178 OptionValueFormatEntity *OptionValue::GetAsFormatEntity() { in GetAsFormatEntity()
180 return static_cast<OptionValueFormatEntity *>(this); in GetAsFormatEntity()
184 const OptionValueFormatEntity *OptionValue::GetAsFormatEntity() const { in GetAsFormatEntity()
186 return static_cast<const OptionValueFormatEntity *>(this); in GetAsFormatEntity()
379 const OptionValueFormatEntity *option_value = GetAsFormatEntity(); in GetFormatEntity()
526 value_sp = std::make_shared<OptionValueFormatEntity>(nullptr); in CreateValueFromCStringForTypeMask()
DCMakeLists.txt40 OptionValueFormatEntity.cpp
DProperty.cpp160 m_value_sp = std::make_shared<OptionValueFormatEntity>( in Property()
/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueFormatEntity.h17 class OptionValueFormatEntity : public OptionValue {
19 OptionValueFormatEntity(const char *default_format);
21 ~OptionValueFormatEntity() override {} in ~OptionValueFormatEntity()
DOptionValue.h248 OptionValueFormatEntity *GetAsFormatEntity();
250 const OptionValueFormatEntity *GetAsFormatEntity() const;
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h143 class OptionValueFormatEntity; variable