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

  /external/clang/include/clang/Frontend/
CompilerInstance.h 89 llvm::OwningPtr<Sema> TheSema;
384 bool hasSema() const { return TheSema != 0; }
387 assert(TheSema && "Compiler instance has no Sema object!");
388 return *TheSema;
391 Sema *takeSema() { return TheSema.take(); }
ASTUnit.h 91 llvm::OwningPtr<Sema> TheSema;
411 bool hasSema() const { return TheSema; }
413 assert(TheSema && "ASTUnit does not have a Sema object!");
414 return *TheSema;

Completed in 253 milliseconds