reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overrides

tools/clang/include/clang/AST/DeclBase.h
  986   virtual Stmt* getBody() const { return nullptr; }

References

tools/clang/include/clang/AST/ASTNodeTraverser.h
  580     Visit(D->getBody());
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 1422   TRY_TO(TraverseStmt(D->getBody()));
tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
   93       bool onlyValueOfVarIsNeeded = checker.TraverseStmt(block->getBody());
tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
   83     UnbridgedCastRewriter(Pass).transformBody(D->getBody(), D);
tools/clang/lib/AST/Expr.cpp
 2368   return TheBlock->getBody();
 2371   return TheBlock->getBody();
tools/clang/lib/Analysis/AnalysisDeclContext.cpp
  119     return BD->getBody();
  611     Visit(BR->getBlockDecl()->getBody());
  646   F.Visit(BD->getBody());
tools/clang/lib/CodeGen/CGBlocks.cpp
 1640     incrementProfileCounter(blockDecl->getBody());
 1641     EmitStmt(blockDecl->getBody());
 1675                      cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
 1684   FinishFunction(cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
 4671     Body = BD->getBody();
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  417     uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody()));
  418     CountMap[D->getBody()] = BodyCount;
  419     Visit(D->getBody());
tools/clang/lib/Sema/SemaChecking.cpp
13569         Visit(block->getBlockDecl()->getBody());
13630   visitor.Visit(block->getBlockDecl()->getBody());
tools/clang/lib/Sema/SemaDeclAttr.cpp
 8465     Body = BD->getBody();
tools/clang/lib/Serialization/ASTWriterDecl.cpp
 1136   Record.AddStmt(D->getBody());
tools/clang/tools/libclang/CIndex.cpp
  591   if (Stmt *Body = B->getBody())