HomeSort by relevance Sort by last modified time
    Searched refs:TheSema (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Frontend/
CompilerInstance.h 100 std::unique_ptr<Sema> TheSema;
455 bool hasSema() const { return (bool)TheSema; }
458 assert(TheSema && "Compiler instance has no Sema object!");
459 return *TheSema;
462 Sema *takeSema() { return TheSema.release(); }
463 void resetAndLeakSema() { BuryPointer(TheSema.release()); }
ASTUnit.h 110 std::unique_ptr<Sema> TheSema;
499 bool hasSema() const { return (bool)TheSema; }
501 assert(TheSema && "ASTUnit does not have a Sema object!");
502 return *TheSema;
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 341 if (!TheSema)
355 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator,
366 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
404 if (TheSema->Context.getLangOpts().CPlusPlus &&
432 = Results[I].CreateCodeCompletionString(*TheSema,
455 = Results[I].CreateCodeCompletionString(*TheSema,
764 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
765 AST->TheSema->Initialize();
766 AST->Reader->InitializeSema(*AST->TheSema);
    [all...]
CompilerInstance.cpp 101 TheSema.reset(S);
511 TheSema.reset(new Sema(getPreprocessor(), getASTContext(), getASTConsumer(),
    [all...]

Completed in 437 milliseconds