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

References

tools/clang/lib/AST/ASTImporter.cpp
 6113   SmallVector<Stmt *, 1> ToCatchStmts(S->getNumCatchStmts());
 6114   for (unsigned CI = 0, CE = S->getNumCatchStmts(); CI != CE; ++CI) {
tools/clang/lib/AST/StmtPrinter.cpp
  511   for (unsigned I = 0, N = Node->getNumCatchStmts(); I != N; ++I) {
tools/clang/lib/CodeGen/CGObjCMac.cpp
 4547   if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) {
 4604     for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) {
tools/clang/lib/CodeGen/CGObjCRuntime.cpp
  149   if (S.getNumCatchStmts())
  164   if (S.getNumCatchStmts()) {
  165     for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
  219   if (S.getNumCatchStmts())
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
 1931   bool noCatch = S->getNumCatchStmts() == 0;
 1954   for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I) {
tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
 1807   if (S->getNumCatchStmts()) {
 1824   for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I) {
tools/clang/lib/Sema/JumpDiagnostics.cpp
  469     for (unsigned I = 0, N = AT->getNumCatchStmts(); I != N; ++I) {
tools/clang/lib/Sema/TreeTransform.h
 7375   for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I) {
tools/clang/lib/Serialization/ASTReaderStmt.cpp
 1351   assert(Record.peekInt() == S->getNumCatchStmts());
 1355   for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I)
tools/clang/lib/Serialization/ASTWriterStmt.cpp
 1276   Record.push_back(S->getNumCatchStmts());
 1279   for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I)