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

Declarations

gen/tools/clang/include/clang/AST/StmtNodes.inc
   67 CAPTUREDSTMT(CapturedStmt, Stmt)

References

tools/clang/include/clang/AST/RecursiveASTVisitor.h
 2606 DEF_TRAVERSE_STMT(CapturedStmt, { TRY_TO(TraverseDecl(S->getCapturedDecl())); })
tools/clang/include/clang/AST/Stmt.h
 3565     return T->getStmtClass() == CapturedStmtClass;
tools/clang/lib/AST/ParentMap.cpp
   86   case Stmt::CapturedStmtClass:
tools/clang/lib/AST/Stmt.cpp
 1216   : Stmt(CapturedStmtClass), NumCaptures(Captures.size()),
 1236   : Stmt(CapturedStmtClass, Empty), NumCaptures(NumCaptures),
tools/clang/lib/CodeGen/CGStmt.cpp
  155   case Stmt::CapturedStmtClass: {
tools/clang/lib/Sema/TreeTransform.h
13366   SourceLocation Loc = S->getBeginLoc();
13367   CapturedDecl *CD = S->getCapturedDecl();
13382                                      S->getCapturedRegionKind(), Params);
13386     Body = getDerived().TransformStmt(S->getCapturedStmt());
tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
 1286     case Stmt::CapturedStmtClass: {
tools/clang/tools/libclang/CXCursor.cpp
  327   case Stmt::CapturedStmtClass: