Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp390 CachedCodeCompletionResult CachedResult; in CacheCodeCompletionResults() local
391 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
394 CachedResult.ShowInContexts = getDeclShowContexts( in CacheCodeCompletionResults()
396 CachedResult.Priority = R.Priority; in CacheCodeCompletionResults()
397 CachedResult.Kind = R.CursorKind; in CacheCodeCompletionResults()
398 CachedResult.Availability = R.Availability; in CacheCodeCompletionResults()
404 CachedResult.TypeClass = STC_Void; in CacheCodeCompletionResults()
405 CachedResult.Type = 0; in CacheCodeCompletionResults()
409 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType); in CacheCodeCompletionResults()
421 CachedResult.Type = TypeValue; in CacheCodeCompletionResults()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp605 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively() local
606 CachedResult = std::move(Result); in memoizedMatchesRecursively()
608 *Builder = CachedResult.Nodes; in memoizedMatchesRecursively()
609 return CachedResult.ResultOfMatch; in memoizedMatchesRecursively()
941 MemoizedMatchResult &CachedResult = ResultCache[Key]; in matchesAnyAncestorOf() local
942 CachedResult.ResultOfMatch = Matched; in matchesAnyAncestorOf()
943 CachedResult.Nodes = *Builder; in matchesAnyAncestorOf()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriver.cpp4494 auto CachedResult = CachedResults.find(ActionTC); in BuildJobsForAction() local
4495 if (CachedResult != CachedResults.end()) { in BuildJobsForAction()
4496 return CachedResult->second; in BuildJobsForAction()