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 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;

Completed in 53 milliseconds