Searched refs:candidate_type (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormattersContainer.h | 95 bool Matches(FormattersMatchCandidate candidate_type) const { in Matches() argument 96 ConstString type_name = candidate_type.GetTypeName(); in Matches() 109 if (candidate_type.GetScriptInterpreter()) in Matches() 110 return candidate_type.GetScriptInterpreter()->FormatterCallbackFunction( in Matches() 112 std::make_shared<TypeImpl>(candidate_type.GetType())); in Matches()
|
H A D | FormatManager.h | 131 AnyMatches(const FormattersMatchCandidate &candidate_type, 136 return m_categories_map.AnyMatches(candidate_type, items, only_enabled,
|
H A D | TypeCategoryMap.h | 69 AnyMatches(const FormattersMatchCandidate &candidate_type,
|
H A D | DataVisualization.h | 54 AnyMatches(const FormattersMatchCandidate &candidate_type,
|
H A D | TypeCategory.h | 349 bool AnyMatches(const FormattersMatchCandidate &candidate_type,
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | TypeCategory.cpp | 188 const FormattersMatchCandidate &candidate_type, FormatCategoryItems items, in AnyMatches() argument 195 if (m_format_cont.AnyMatches(candidate_type)) { in AnyMatches() 205 if (m_summary_cont.AnyMatches(candidate_type)) { in AnyMatches() 215 if (m_filter_cont.AnyMatches(candidate_type)) { in AnyMatches() 225 if (m_synth_cont.AnyMatches(candidate_type)) { in AnyMatches()
|
H A D | DataVisualization.cpp | 69 const FormattersMatchCandidate &candidate_type, in AnyMatches() argument 73 return GetFormatManager().AnyMatches(candidate_type, items, only_enabled, in AnyMatches()
|
H A D | TypeCategoryMap.cpp | 161 const FormattersMatchCandidate &candidate_type, in AnyMatches() argument 169 if (pos->second->AnyMatches(candidate_type, items, only_enabled, in AnyMatches()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectType.cpp | 2225 FormattersMatchCandidate candidate_type(type_name, nullptr, TypeImpl(), in AddSynth() local 2227 if (category->AnyMatches(candidate_type, eFormatCategoryItemFilter, in AddSynth() 2365 FormattersMatchCandidate candidate_type( in AddFilter() local 2368 if (category->AnyMatches(candidate_type, eFormatCategoryItemSynth, in AddFilter()
|