reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2051 cxxCatchStmt;
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.cpp1162 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", cxxCatchStmt())); 1171 cxxCatchStmt(isCatchAll()))); 1173 cxxCatchStmt(isCatchAll())));