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

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  482   REGISTER_MATCHER(statementCountIs);
tools/clang/tools/extra/clang-tidy/performance/InefficientVectorOperationCheck.cpp
  115       anyOf(compoundStmt(statementCountIs(1), has(AppendCall)), AppendCall));
tools/clang/tools/extra/clang-tidy/readability/DeleteNullPointerCheck.cpp
   47                               statementCountIs(1))
tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
   72                compoundStmt(statementCountIs(1), has(SimpleReturnsBool)));
  470   auto Then = anyOf(SimpleThen, compoundStmt(statementCountIs(1),
  475   auto Else = anyOf(SimpleElse, compoundStmt(statementCountIs(1),
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
 1577                       compoundStmt(statementCountIs(0))));
 1579                          compoundStmt(statementCountIs(1))));
 1584                       compoundStmt(statementCountIs(1))));
 1586                          compoundStmt(statementCountIs(0))));
 1588                          compoundStmt(statementCountIs(2))));
 1593                       compoundStmt(statementCountIs(3))));
 1598                       compoundStmt(statementCountIs(1))));
 1600                       compoundStmt(statementCountIs(2))));
 1602                          compoundStmt(statementCountIs(3))));
 1604                       compoundStmt(statementCountIs(4))));