Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueChar.h16 class OptionValueChar : public Cloneable<OptionValueChar, OptionValue> {
18 OptionValueChar(char value) in OptionValueChar() function
21 OptionValueChar(char current_value, char default_value) in OptionValueChar() function
24 ~OptionValueChar() override = default;
H A DOptionValue.h199 OptionValueChar *GetAsChar();
200 const OptionValueChar *GetAsChar() const;
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueChar.cpp19 void OptionValueChar::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
34 Status OptionValueChar::SetValueFromString(llvm::StringRef value, in SetValueFromString()
H A DOptionValue.cpp55 const OptionValueChar *OptionValue::GetAsChar() const { in GetAsChar()
57 return static_cast<const OptionValueChar *>(this); in GetAsChar()
61 OptionValueChar *OptionValue::GetAsChar() { in GetAsChar()
63 return static_cast<OptionValueChar *>(this); in GetAsChar()
289 if (const OptionValueChar *option_value = GetAsChar()) in GetCharValue()
296 if (OptionValueChar *option_value = GetAsChar()) { in SetCharValue()
547 value_sp = std::make_shared<OptionValueChar>('\0'); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp65 m_value_sp = std::make_shared<OptionValueChar>( in Property()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h146 class OptionValueChar; variable
/freebsd/lib/clang/liblldb/
H A DMakefile328 SRCS+= Interpreter/OptionValueChar.cpp