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

  /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/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...]

Completed in 25 milliseconds