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 96 OwningPtr<Sema> TheSema;
416 bool hasSema() const { return TheSema != 0; }
419 assert(TheSema && "Compiler instance has no Sema object!");
420 return *TheSema;
423 Sema *takeSema() { return TheSema.take(); }
ASTUnit.h 90 OwningPtr<Sema> TheSema;
459 bool hasSema() const { return TheSema; }
461 assert(TheSema && "ASTUnit does not have a Sema object!");
462 return *TheSema;
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 346 if (!TheSema)
360 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator,
371 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
409 if (TheSema->Context.getLangOpts().CPlusPlus &&
437 = Results[I].CreateCodeCompletionString(*TheSema,
460 = Results[I].CreateCodeCompletionString(*TheSema,
832 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
833 AST->TheSema->Initialize();
834 ReaderPtr->InitializeSema(*AST->TheSema);
    [all...]
CompilerInstance.cpp 90 TheSema.reset(S);
415 TheSema.reset(new Sema(getPreprocessor(), getASTContext(), getASTConsumer(),
    [all...]

Completed in 226 milliseconds