Home
last modified time | relevance | path

Searched refs:CachedResult (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/Frontend/
H A DASTUnit.cpp396 CachedResult.Priority = R.Priority; in CacheCodeCompletionResults()
397 CachedResult.Kind = R.CursorKind; in CacheCodeCompletionResults()
404 CachedResult.TypeClass = STC_Void; in CacheCodeCompletionResults()
405 CachedResult.Type = 0; in CacheCodeCompletionResults()
421 CachedResult.Type = TypeValue; in CacheCodeCompletionResults()
460 CachedResult.Type = 0; in CacheCodeCompletionResults()
478 CachedResult.ShowInContexts in CacheCodeCompletionResults()
492 CachedResult.Priority = R.Priority; in CacheCodeCompletionResults()
493 CachedResult.Kind = R.CursorKind; in CacheCodeCompletionResults()
495 CachedResult.TypeClass = STC_Void; in CacheCodeCompletionResults()
[all …]
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp621 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively() local
622 CachedResult = std::move(Result); in memoizedMatchesRecursively()
624 *Builder = CachedResult.Nodes; in memoizedMatchesRecursively()
625 return CachedResult.ResultOfMatch; in memoizedMatchesRecursively()
1149 MemoizedMatchResult &CachedResult = ResultCache[Key]; in matchesAnyAncestorOf() local
1150 CachedResult.ResultOfMatch = Matched; in matchesAnyAncestorOf()
1151 CachedResult.Nodes = *Builder; in matchesAnyAncestorOf()
/llvm-project-15.0.7/clang/lib/Driver/
H A DDriver.cpp5182 auto CachedResult = CachedResults.find(ActionTC); in BuildJobsForAction() local
5183 if (CachedResult != CachedResults.end()) { in BuildJobsForAction()
5184 return CachedResult->second; in BuildJobsForAction()