Lines Matching refs:match_data
588 ImplSP FormatManager::GetHardcoded(FormattersMatchData &match_data) { in GetHardcoded() argument
590 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in GetHardcoded()
592 if (lang_category->GetHardcoded(*this, match_data, retval_sp)) in GetHardcoded()
611 FormattersMatchData match_data(valobj, use_dynamic); in Get() local
612 if (ImplSP retval_sp = GetCached<ImplSP>(match_data)) in Get()
618 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in Get()
621 if (lang_category->Get(match_data, retval_sp)) in Get()
630 return GetHardcoded<ImplSP>(match_data); in Get()
634 ImplSP FormatManager::GetCached(FormattersMatchData &match_data) { in GetCached() argument
637 if (match_data.GetTypeForCache()) { in GetCached()
639 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
640 if (m_format_cache.Get(match_data.GetTypeForCache(), retval_sp)) { in GetCached()
652 m_categories_map.Get(match_data, retval_sp); in GetCached()
653 if (match_data.GetTypeForCache() && (!retval_sp || !retval_sp->NonCacheable())) { in GetCached()
656 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
657 m_format_cache.Set(match_data.GetTypeForCache(), retval_sp); in GetCached()