Home
last modified time | relevance | path

Searched refs:format_sp (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormatCache.cpp39 void FormatCache::Entry::Set(lldb::TypeFormatImplSP format_sp) { in Set() argument
41 m_format_sp = format_sp; in Set()
102 void FormatCache::Set(ConstString type, lldb::TypeFormatImplSP &format_sp) { in Set() argument
104 GetEntry(type).Set(format_sp); in Set()
H A DFormattersHelpers.cpp27 lldb::TypeFormatImplSP format_sp(new TypeFormatImpl_Format(format, flags)); in AddFormat() local
31 RegularExpression(type_name.GetStringRef()), format_sp); in AddFormat()
34 format_sp); in AddFormat()
H A DTypeCategory.cpp231 lldb::TypeFormatImplSP format_sp; in AnyMatches() local
237 if (GetTypeFormatsContainer()->Get(type_name, format_sp)) { in AnyMatches()
247 if (GetRegexTypeFormatsContainer()->Get(type_name, format_sp)) { in AnyMatches()
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DLanguageCategory.h28 bool Get(FormattersMatchData &match_data, ImplSP &format_sp);
31 ImplSP &format_sp);
H A DFormatCache.h61 void Set(ConstString type, lldb::TypeFormatImplSP &format_sp);
/llvm-project-15.0.7/lldb/source/API/
H A DSBTypeCategory.cpp214 lldb::TypeFormatImplSP format_sp; in GetFormatForType() local
218 ConstString(spec.GetName()), format_sp); in GetFormatForType()
221 ConstString(spec.GetName()), format_sp); in GetFormatForType()
223 if (!format_sp) in GetFormatForType()
226 return lldb::SBTypeFormat(format_sp); in GetFormatForType()
H A DSBValue.cpp491 lldb::TypeFormatImplSP format_sp = value_sp->GetValueFormat(); in GetTypeFormat() local
492 if (format_sp) in GetTypeFormat()
493 format.SetSP(format_sp); in GetTypeFormat()
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObject.cpp1051 lldb::TypeFormatImplSP format_sp; in GetValueAsCString() local
1055 format_sp = m_type_format_sp; in GetValueAsCString()
1072 if (!format_sp) in GetValueAsCString()
1073 format_sp = std::make_shared<TypeFormatImpl_Format>(my_format); in GetValueAsCString()
1074 if (GetValueAsCString(*format_sp.get(), m_value_str)) { in GetValueAsCString()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectType.cpp1107 const FormatterSharedPointer &format_sp) -> bool { in DoExecute() argument
1113 format_sp->GetDescription().c_str()); in DoExecute()
1121 const FormatterSharedPointer &format_sp) -> bool { in DoExecute() argument
1127 format_sp->GetDescription().c_str()); in DoExecute()