Searched refs:TheSema (Results 1 – 4 of 4) sorted by relevance
/external/clang/include/clang/Frontend/ |
D | CompilerInstance.h | 101 std::unique_ptr<Sema> TheSema; variable 474 bool hasSema() const { return (bool)TheSema; } in hasSema() 477 assert(TheSema && "Compiler instance has no Sema object!"); in getSema() 478 return *TheSema; in getSema()
|
D | ASTUnit.h | 110 std::unique_ptr<Sema> TheSema; variable 510 bool hasSema() const { return (bool)TheSema; } in hasSema() 512 assert(TheSema && "ASTUnit does not have a Sema object!"); in getSema() 513 return *TheSema; in getSema()
|
/external/clang/lib/Frontend/ |
D | ASTUnit.cpp | 337 if (!TheSema) in CacheCodeCompletionResults() 351 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator, in CacheCodeCompletionResults() 363 *TheSema, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults() 398 if (TheSema->Context.getLangOpts().CPlusPlus && IsNestedNameSpecifier && in CacheCodeCompletionResults() 426 *TheSema, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults() 447 *TheSema, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults() 747 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer)); in LoadFromASTFile() 748 AST->TheSema->Initialize(); in LoadFromASTFile() 749 AST->Reader->InitializeSema(*AST->TheSema); in LoadFromASTFile() 1070 TheSema.reset(); in Parse() [all …]
|
D | CompilerInstance.cpp | 101 TheSema.reset(S); in setSema() 113 return std::move(TheSema); in takeSema() 515 TheSema.reset(new Sema(getPreprocessor(), getASTContext(), getASTConsumer(), in createSema()
|