Lines Matching refs:MacroArgsCache
1763 void SourceManager::computeMacroArgsCache(MacroArgsMap &MacroArgsCache, in computeMacroArgsCache() argument
1768 MacroArgsCache.insert(std::make_pair(0, SourceLocation())); in computeMacroArgsCache()
1822 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in computeMacroArgsCache()
1830 MacroArgsMap &MacroArgsCache, in associateFileChunkWithMacroArgExp() argument
1859 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in associateFileChunkWithMacroArgExp()
1901 MacroArgsMap::iterator I = MacroArgsCache.upper_bound(EndOffs); in associateFileChunkWithMacroArgExp()
1904 MacroArgsCache[BeginOffs] = ExpansionLoc; in associateFileChunkWithMacroArgExp()
1905 MacroArgsCache[EndOffs] = EndOffsMappedLoc; in associateFileChunkWithMacroArgExp()
1928 std::unique_ptr<MacroArgsMap> &MacroArgsCache = MacroArgsCacheMap[FID]; in getMacroArgExpandedLocation() local
1929 if (!MacroArgsCache) { in getMacroArgExpandedLocation()
1930 MacroArgsCache = std::make_unique<MacroArgsMap>(); in getMacroArgExpandedLocation()
1931 computeMacroArgsCache(*MacroArgsCache, FID); in getMacroArgExpandedLocation()
1934 assert(!MacroArgsCache->empty()); in getMacroArgExpandedLocation()
1935 MacroArgsMap::iterator I = MacroArgsCache->upper_bound(Offset); in getMacroArgExpandedLocation()
1938 if (I == MacroArgsCache->begin()) in getMacroArgExpandedLocation()