Lines Matching refs:ResultCache
409 MemoizationMap::iterator I = ResultCache.find(Key); in memoizedMatchesRecursively()
410 if (I != ResultCache.end()) { in memoizedMatchesRecursively()
420 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively()
447 if (ResultCache.size() > MaxMemoizationEntries) in matchesChildOf()
448 ResultCache.clear(); in matchesChildOf()
457 if (ResultCache.size() > MaxMemoizationEntries) in matchesDescendantOf()
458 ResultCache.clear(); in matchesDescendantOf()
469 if (ResultCache.size() > MaxMemoizationEntries) in matchesAncestorOf()
470 ResultCache.clear(); in matchesAncestorOf()
649 MemoizationMap::iterator I = ResultCache.find(Key); in memoizedMatchesAncestorOfRecursively()
650 if (I != ResultCache.end()) { in memoizedMatchesAncestorOfRecursively()
660 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesAncestorOfRecursively()
796 MemoizationMap ResultCache; member in clang::ast_matchers::internal::__anon99630ca40111::MatchASTVisitor