Lines Matching refs:match_data
598 ImplSP FormatManager::GetHardcoded(FormattersMatchData &match_data) { in GetHardcoded() argument
600 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in GetHardcoded()
602 if (lang_category->GetHardcoded(*this, match_data, retval_sp)) in GetHardcoded()
612 FormattersMatchData match_data(valobj, use_dynamic); in Get() local
613 if (ImplSP retval_sp = GetCached<ImplSP>(match_data)) in Get()
619 for (lldb::LanguageType lang_type : match_data.GetCandidateLanguages()) { in Get()
622 if (lang_category->Get(match_data, retval_sp)) in Get()
633 return GetHardcoded<ImplSP>(match_data); in Get()
637 ImplSP FormatManager::GetCached(FormattersMatchData &match_data) { in GetCached() argument
640 if (match_data.GetTypeForCache()) { in GetCached()
642 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
643 if (m_format_cache.Get(match_data.GetTypeForCache(), retval_sp)) { in GetCached()
656 m_categories_map.Get(match_data, retval_sp); in GetCached()
657 if (match_data.GetTypeForCache() && (!retval_sp || !retval_sp->NonCacheable())) { in GetCached()
660 match_data.GetTypeForCache().AsCString("<invalid>")); in GetCached()
661 m_format_cache.Set(match_data.GetTypeForCache(), retval_sp); in GetCached()