Lines Matching refs:ResultCache
394 MemoizationMap::iterator I = ResultCache.find(Key); in memoizedMatchesRecursively()
395 if (I != ResultCache.end()) { in memoizedMatchesRecursively()
405 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively()
432 if (ResultCache.size() > MaxMemoizationEntries) in matchesChildOf()
433 ResultCache.clear(); in matchesChildOf()
442 if (ResultCache.size() > MaxMemoizationEntries) in matchesDescendantOf()
443 ResultCache.clear(); in matchesDescendantOf()
454 if (ResultCache.size() > MaxMemoizationEntries) in matchesAncestorOf()
455 ResultCache.clear(); in matchesAncestorOf()
635 MemoizationMap::iterator I = ResultCache.find(Key); in memoizedMatchesAncestorOfRecursively()
636 if (I != ResultCache.end()) { in memoizedMatchesAncestorOfRecursively()
686 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesAncestorOfRecursively()
753 MemoizationMap ResultCache; member in clang::ast_matchers::internal::__anonf927a3570111::MatchASTVisitor