HomeSort by: relevance | last modified time | path
    Searched defs:TheSema (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CompilerInstance.h 111 std::unique_ptr<Sema> TheSema;
500 bool hasSema() const { return (bool)TheSema; }
503 assert(TheSema && "Compiler instance has no Sema object!");
504 return *TheSema;
ASTUnit.h 135 std::unique_ptr<Sema> TheSema;
454 bool hasSema() const { return (bool)TheSema; }
457 assert(TheSema && "ASTUnit does not have a Sema object!");
458 return *TheSema;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendActions.cpp 386 void atTemplateBegin(const Sema &TheSema,
388 displayTemplightEntry<true>(llvm::outs(), TheSema, Inst);
391 void atTemplateEnd(const Sema &TheSema,
393 displayTemplightEntry<false>(llvm::outs(), TheSema, Inst);
448 static void displayTemplightEntry(llvm::raw_ostream &Out, const Sema &TheSema,
455 getTemplightEntry<BeginInstantiation>(TheSema, Inst);
463 static TemplightEntry getTemplightEntry(const Sema &TheSema,
470 PrintingPolicy Policy = TheSema.Context.getPrintingPolicy();
475 TheSema.getSourceManager().getPresumedLoc(Inst.Entity->getLocation());
482 TheSema.getSourceManager().getPresumedLoc(Inst.PointOfInstantiation)
    [all...]

Completed in 28 milliseconds