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

Declarations

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 1967 extern const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  234   REGISTER_MATCHER(gotoStmt);
tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
  129       anyOf(gotoStmt(), switchStmt(), returnStmt(),
tools/clang/tools/extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp
   23                     gotoStmt(Internal), cxxThrowExpr(Internal),
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/AvoidGotoCheck.cpp
   40   Finder->addMatcher(gotoStmt(anyOf(unless(hasAncestor(NestedLoop)),
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
  332   EXPECT_TRUE(matches("void f() { goto FOO; FOO: ;}", gotoStmt()));