Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
DEDInst.h37 struct CachedResult { struct
44 CachedResult() : Valid(false) { } in CachedResult() argument
71 CachedResult StringifyResult; argument
79 CachedResult ParseResult;
91 CachedResult TokenizeResult;
/external/clang/lib/Frontend/
DASTUnit.cpp363 CachedCodeCompletionResult CachedResult; in CacheCodeCompletionResults() local
364 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
367 CachedResult.ShowInContexts = getDeclShowContexts( in CacheCodeCompletionResults()
369 CachedResult.Priority = R.Priority; in CacheCodeCompletionResults()
370 CachedResult.Kind = R.CursorKind; in CacheCodeCompletionResults()
371 CachedResult.Availability = R.Availability; in CacheCodeCompletionResults()
377 CachedResult.TypeClass = STC_Void; in CacheCodeCompletionResults()
378 CachedResult.Type = 0; in CacheCodeCompletionResults()
382 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType); in CacheCodeCompletionResults()
394 CachedResult.Type = TypeValue; in CacheCodeCompletionResults()
[all …]
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp402 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesRecursively() local
403 CachedResult = std::move(Result); in memoizedMatchesRecursively()
405 *Builder = CachedResult.Nodes; in memoizedMatchesRecursively()
406 return CachedResult.ResultOfMatch; in memoizedMatchesRecursively()
641 MemoizedMatchResult &CachedResult = ResultCache[Key]; in memoizedMatchesAncestorOfRecursively() local
642 CachedResult = std::move(Result); in memoizedMatchesAncestorOfRecursively()
644 *Builder = CachedResult.Nodes; in memoizedMatchesAncestorOfRecursively()
645 return CachedResult.ResultOfMatch; in memoizedMatchesAncestorOfRecursively()
/external/clang/lib/Driver/
DDriver.cpp1990 auto CachedResult = CachedResults.find(ActionTC); in BuildJobsForAction() local
1991 if (CachedResult != CachedResults.end()) { in BuildJobsForAction()
1992 return CachedResult->second; in BuildJobsForAction()