Lines Matching refs:MacroArgsCache
1703 void SourceManager::computeMacroArgsCache(MacroArgsMap &MacroArgsCache, in computeMacroArgsCache() argument
1708 MacroArgsCache.insert(std::make_pair(0, SourceLocation())); in computeMacroArgsCache()
1762 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in computeMacroArgsCache()
1770 MacroArgsMap &MacroArgsCache, in associateFileChunkWithMacroArgExp() argument
1799 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in associateFileChunkWithMacroArgExp()
1841 MacroArgsMap::iterator I = MacroArgsCache.upper_bound(EndOffs); in associateFileChunkWithMacroArgExp()
1844 MacroArgsCache[BeginOffs] = ExpansionLoc; in associateFileChunkWithMacroArgExp()
1845 MacroArgsCache[EndOffs] = EndOffsMappedLoc; in associateFileChunkWithMacroArgExp()
1868 std::unique_ptr<MacroArgsMap> &MacroArgsCache = MacroArgsCacheMap[FID]; in getMacroArgExpandedLocation() local
1869 if (!MacroArgsCache) { in getMacroArgExpandedLocation()
1870 MacroArgsCache = std::make_unique<MacroArgsMap>(); in getMacroArgExpandedLocation()
1871 computeMacroArgsCache(*MacroArgsCache, FID); in getMacroArgExpandedLocation()
1874 assert(!MacroArgsCache->empty()); in getMacroArgExpandedLocation()
1875 MacroArgsMap::iterator I = MacroArgsCache->upper_bound(Offset); in getMacroArgExpandedLocation()
1878 if (I == MacroArgsCache->begin()) in getMacroArgExpandedLocation()