Lines Matching refs:ResultCache
391 MemoizationMap::iterator I = ResultCache.find(Key); in memoizedMatchesRecursively()
392 if (I != ResultCache.end()) { in memoizedMatchesRecursively()
402 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively()
429 if (ResultCache.size() > MaxMemoizationEntries) in matchesChildOf()
430 ResultCache.clear(); in matchesChildOf()
439 if (ResultCache.size() > MaxMemoizationEntries) in matchesDescendantOf()
440 ResultCache.clear(); in matchesDescendantOf()
451 if (ResultCache.size() > MaxMemoizationEntries) in matchesAncestorOf()
452 ResultCache.clear(); in matchesAncestorOf()
630 MemoizationMap::iterator I = ResultCache.find(Key); in memoizedMatchesAncestorOfRecursively()
631 if (I != ResultCache.end()) { in memoizedMatchesAncestorOfRecursively()
641 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesAncestorOfRecursively()
755 MemoizationMap ResultCache; member in clang::ast_matchers::internal::__anonf927a3570111::MatchASTVisitor