Lines Matching refs:MacroArgsCache
1754 void SourceManager::computeMacroArgsCache(MacroArgsMap &MacroArgsCache, in computeMacroArgsCache() argument
1759 MacroArgsCache.insert(std::make_pair(0, SourceLocation())); in computeMacroArgsCache()
1813 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in computeMacroArgsCache()
1821 MacroArgsMap &MacroArgsCache, in associateFileChunkWithMacroArgExp() argument
1850 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in associateFileChunkWithMacroArgExp()
1892 MacroArgsMap::iterator I = MacroArgsCache.upper_bound(EndOffs); in associateFileChunkWithMacroArgExp()
1895 MacroArgsCache[BeginOffs] = ExpansionLoc; in associateFileChunkWithMacroArgExp()
1896 MacroArgsCache[EndOffs] = EndOffsMappedLoc; in associateFileChunkWithMacroArgExp()
1919 std::unique_ptr<MacroArgsMap> &MacroArgsCache = MacroArgsCacheMap[FID]; in getMacroArgExpandedLocation() local
1920 if (!MacroArgsCache) { in getMacroArgExpandedLocation()
1921 MacroArgsCache = std::make_unique<MacroArgsMap>(); in getMacroArgExpandedLocation()
1922 computeMacroArgsCache(*MacroArgsCache, FID); in getMacroArgExpandedLocation()
1925 assert(!MacroArgsCache->empty()); in getMacroArgExpandedLocation()
1926 MacroArgsMap::iterator I = MacroArgsCache->upper_bound(Offset); in getMacroArgExpandedLocation()
1929 if (I == MacroArgsCache->begin()) in getMacroArgExpandedLocation()