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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 2051     cxxCatchStmt;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  167   REGISTER_MATCHER(cxxCatchStmt);
tools/clang/tools/extra/clang-tidy/bugprone/ThrowKeywordMissingCheck.cpp
   35                               unless(hasAncestor(cxxCatchStmt()))))))
tools/clang/tools/extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp
   34   Finder->addMatcher(cxxCatchStmt().bind("catch"), this);
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
  322             cxxCatchStmt(anyOf(hasDescendant(varDecl()), isCatchAll()))));
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
 1162   EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", cxxCatchStmt()));
 1171                       cxxCatchStmt(isCatchAll())));
 1173                          cxxCatchStmt(isCatchAll())));