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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 2070     cxxThrowExpr;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  192   REGISTER_MATCHER(cxxThrowExpr);
tools/clang/tools/extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp
   23                     gotoStmt(Internal), cxxThrowExpr(Internal),
tools/clang/tools/extra/clang-tidy/bugprone/ThrowKeywordMissingCheck.cpp
   32                             anyOf(cxxThrowExpr(), callExpr(), returnStmt()))),
tools/clang/tools/extra/clang-tidy/cert/ThrownExceptionTypeCheck.cpp
   25       cxxThrowExpr(has(ignoringParenImpCasts(
tools/clang/tools/extra/clang-tidy/hicpp/ExceptionBaseclassCheck.cpp
   24       cxxThrowExpr(
tools/clang/tools/extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp
   33   Finder->addMatcher(cxxThrowExpr().bind("throw"), this);
tools/clang/tools/extra/clang-tidy/readability/ElseAfterReturnCheck.cpp
   24                  expr(ignoringImplicit(cxxThrowExpr().bind("throw")))));
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
 1165     notMatches("void foo() try { } catch(int X) { }", cxxThrowExpr()));
 1167                       cxxThrowExpr()));
 1169                       cxxThrowExpr()));