Home
last modified time | relevance | path

Searched refs:OptionValueLanguage (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueLanguage.h19 class OptionValueLanguage : public OptionValue {
21 OptionValueLanguage(lldb::LanguageType value) in OptionValueLanguage() function
24 OptionValueLanguage(lldb::LanguageType current_value, in OptionValueLanguage() function
29 ~OptionValueLanguage() override {} in ~OptionValueLanguage()
H A DOptionValue.h227 OptionValueLanguage *GetAsLanguage();
229 const OptionValueLanguage *GetAsLanguage() const;
H A DOptionValueProperties.h125 OptionValueLanguage *
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp20 void OptionValueLanguage::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()
32 Status OptionValueLanguage::SetValueFromString(llvm::StringRef value, in SetValueFromString()
76 lldb::OptionValueSP OptionValueLanguage::DeepCopy() const { in DeepCopy()
77 return OptionValueSP(new OptionValueLanguage(*this)); in DeepCopy()
H A DOptionValue.cpp168 OptionValueLanguage *OptionValue::GetAsLanguage() { in GetAsLanguage()
170 return static_cast<OptionValueLanguage *>(this); in GetAsLanguage()
174 const OptionValueLanguage *OptionValue::GetAsLanguage() const { in GetAsLanguage()
176 return static_cast<const OptionValueLanguage *>(this); in GetAsLanguage()
365 const OptionValueLanguage *option_value = GetAsLanguage(); in GetLanguageValue()
372 OptionValueLanguage *option_value = GetAsLanguage(); in SetLanguageValue()
529 value_sp.reset(new OptionValueLanguage(eLanguageTypeUnknown)); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp142 m_value_sp.reset(new OptionValueLanguage(new_lang)); in Property()
H A DOptionValueProperties.cpp275 OptionValueLanguage *
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h163 class OptionValueLanguage; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp1068 OptionValueLanguage m_category_language;
1834 OptionValueLanguage m_cate_language;
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile282 SRCS+= Interpreter/OptionValueLanguage.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp3946 OptionValueLanguage *value = in GetLanguage()