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

References

tools/clang/include/clang/AST/Stmt.h
 3446   void setCapturedStmt(Stmt *S) { getStoredStmts()[NumCaptures] = S; }
 3461   Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; }
 3462   const Stmt *getCapturedStmt() const { return getStoredStmts()[NumCaptures]; }
 3509     return getStoredCaptures() + NumCaptures;
 3513   unsigned capture_size() const { return NumCaptures; }
 3545     return capture_init_begin() + NumCaptures;
 3549     return capture_init_begin() + NumCaptures;
tools/clang/lib/AST/Stmt.cpp
 1201   unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (NumCaptures + 1);
 1224   for (unsigned I = 0, N = NumCaptures; I != N; ++I)
 1284   return child_range(getStoredStmts(), getStoredStmts() + NumCaptures);
 1288   return const_child_range(getStoredStmts(), getStoredStmts() + NumCaptures);