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 100 std::unique_ptr<Sema> TheSema;
455 bool hasSema() const { return (bool)TheSema; }
458 assert(TheSema && "Compiler instance has no Sema object!");
459 return *TheSema;
462 Sema *takeSema() { return TheSema.release(); }
463 void resetAndLeakSema() { BuryPointer(TheSema.release()); }
ASTUnit.h 110 std::unique_ptr<Sema> TheSema;
499 bool hasSema() const { return (bool)TheSema; }
501 assert(TheSema && "ASTUnit does not have a Sema object!");
502 return *TheSema;
    [all...]

Completed in 120 milliseconds