Lines Matching refs:MacroArgsCache
1746 void SourceManager::computeMacroArgsCache(MacroArgsMap &MacroArgsCache, in computeMacroArgsCache() argument
1751 MacroArgsCache.insert(std::make_pair(0, SourceLocation())); in computeMacroArgsCache()
1792 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in computeMacroArgsCache()
1800 MacroArgsMap &MacroArgsCache, in associateFileChunkWithMacroArgExp() argument
1829 associateFileChunkWithMacroArgExp(MacroArgsCache, FID, in associateFileChunkWithMacroArgExp()
1871 MacroArgsMap::iterator I = MacroArgsCache.upper_bound(EndOffs); in associateFileChunkWithMacroArgExp()
1874 MacroArgsCache[BeginOffs] = ExpansionLoc; in associateFileChunkWithMacroArgExp()
1875 MacroArgsCache[EndOffs] = EndOffsMappedLoc; in associateFileChunkWithMacroArgExp()
1898 std::unique_ptr<MacroArgsMap> &MacroArgsCache = MacroArgsCacheMap[FID]; in getMacroArgExpandedLocation() local
1899 if (!MacroArgsCache) { in getMacroArgExpandedLocation()
1900 MacroArgsCache = llvm::make_unique<MacroArgsMap>(); in getMacroArgExpandedLocation()
1901 computeMacroArgsCache(*MacroArgsCache, FID); in getMacroArgExpandedLocation()
1904 assert(!MacroArgsCache->empty()); in getMacroArgExpandedLocation()
1905 MacroArgsMap::iterator I = MacroArgsCache->upper_bound(Offset); in getMacroArgExpandedLocation()