Lines Matching refs:match_data
600 ImplSP FormatManager::GetHardcoded(FormattersMatchData &match_data) { in GetHardcoded() argument
602 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in GetHardcoded()
604 if (lang_category->GetHardcoded(*this, match_data, retval_sp)) in GetHardcoded()
623 FormattersMatchData match_data(valobj, use_dynamic); in Get() local
624 if (ImplSP retval_sp = GetCached<ImplSP>(match_data)) in Get()
630 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in Get()
633 if (lang_category->Get(match_data, retval_sp)) in Get()
642 return GetHardcoded<ImplSP>(match_data); in Get()
646 ImplSP FormatManager::GetCached(FormattersMatchData &match_data) { in GetCached() argument
649 if (match_data.GetTypeForCache()) { in GetCached()
651 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
652 if (m_format_cache.Get(match_data.GetTypeForCache(), retval_sp)) { in GetCached()
664 m_categories_map.Get(match_data, retval_sp); in GetCached()
665 if (match_data.GetTypeForCache() && (!retval_sp || !retval_sp->NonCacheable())) { in GetCached()
668 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
669 m_format_cache.Set(match_data.GetTypeForCache(), retval_sp); in GetCached()