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 95 OwningPtr<Sema> TheSema;
402 bool hasSema() const { return TheSema != 0; }
405 assert(TheSema && "Compiler instance has no Sema object!");
406 return *TheSema;
409 Sema *takeSema() { return TheSema.take(); }
ASTUnit.h 81 OwningPtr<Sema> TheSema;
448 bool hasSema() const { return TheSema; }
450 assert(TheSema && "ASTUnit does not have a Sema object!");
451 return *TheSema;
  /external/clang/lib/Frontend/
ASTUnit.cpp 341 if (!TheSema)
354 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator,
365 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
402 if (TheSema->Context.getLangOpts().CPlusPlus &&
430 = Results[I].CreateCodeCompletionString(*TheSema,
452 = Results[I].CreateCodeCompletionString(*TheSema,
803 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
804 AST->TheSema->Initialize();
805 ReaderPtr->InitializeSema(*AST->TheSema);
    [all...]
CompilerInstance.cpp 82 TheSema.reset(S);
432 TheSema.reset(new Sema(getPreprocessor(), getASTContext(), getASTConsumer(),
    [all...]

Completed in 406 milliseconds