HomeSort by: relevance | last modified time | path
    Searched refs:CachedResult (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 390 CachedCodeCompletionResult CachedResult;
391 CachedResult.Completion = R.CreateCodeCompletionString(
394 CachedResult.ShowInContexts = getDeclShowContexts(
396 CachedResult.Priority = R.Priority;
397 CachedResult.Kind = R.CursorKind;
398 CachedResult.Availability = R.Availability;
404 CachedResult.TypeClass = STC_Void;
405 CachedResult.Type = 0;
409 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
421 CachedResult.Type = TypeValue
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 605 MemoizedMatchResult &CachedResult = ResultCache[Key];
606 CachedResult = std::move(Result);
608 *Builder = CachedResult.Nodes;
609 return CachedResult.ResultOfMatch;
941 MemoizedMatchResult &CachedResult = ResultCache[Key];
942 CachedResult.ResultOfMatch = Matched;
943 CachedResult.Nodes = *Builder;
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Driver.cpp 4494 auto CachedResult = CachedResults.find(ActionTC);
4495 if (CachedResult != CachedResults.end()) {
4496 return CachedResult->second;

Completed in 167 milliseconds