Lines Matching refs:match_data
599 ImplSP FormatManager::GetHardcoded(FormattersMatchData &match_data) { in GetHardcoded() argument
601 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in GetHardcoded()
603 if (lang_category->GetHardcoded(*this, match_data, retval_sp)) in GetHardcoded()
613 FormattersMatchData match_data(valobj, use_dynamic); in Get() local
614 if (ImplSP retval_sp = GetCached<ImplSP>(match_data)) in Get()
620 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in Get()
623 if (lang_category->Get(match_data, retval_sp)) in Get()
634 return GetHardcoded<ImplSP>(match_data); in Get()
638 ImplSP FormatManager::GetCached(FormattersMatchData &match_data) { in GetCached() argument
641 if (match_data.GetTypeForCache()) { in GetCached()
643 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
644 if (m_format_cache.Get(match_data.GetTypeForCache(), retval_sp)) { in GetCached()
657 m_categories_map.Get(match_data, retval_sp); in GetCached()
658 if (match_data.GetTypeForCache() && (!retval_sp || !retval_sp->NonCacheable())) { in GetCached()
661 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
662 m_format_cache.Set(match_data.GetTypeForCache(), retval_sp); in GetCached()