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

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  457   REGISTER_MATCHER(parameterCountIs);
tools/clang/tools/extra/clang-tidy/cert/LimitedRandomnessCheck.cpp
   21                                                   parameterCountIs(0))))
tools/clang/tools/extra/clang-tidy/google/OverloadedUnaryAndCheck.cpp
   30       cxxMethodDecl(parameterCountIs(0), hasOverloadedOperatorName("&"))
   35   Finder->addMatcher(functionDecl(unless(cxxMethodDecl()), parameterCountIs(1),
tools/clang/tools/extra/clang-tidy/modernize/RedundantVoidArgCheck.cpp
   50   Finder->addMatcher(functionDecl(parameterCountIs(0), unless(isImplicit()),
tools/clang/tools/extra/clang-tidy/modernize/UseEqualsDefaultCheck.cpp
  222                     parameterCountIs(0)),
  228                     parameterCountIs(1))))
tools/clang/tools/extra/clang-tidy/performance/TypePromotionInMathFnCheck.cpp
   73       callExpr(callee(functionDecl(OneDoubleArgFns, parameterCountIs(1),
   84       callExpr(callee(functionDecl(TwoDoubleArgFns, parameterCountIs(2),
   93       callExpr(callee(functionDecl(hasName("::fma"), parameterCountIs(3),
  105                    hasName("::frexp"), parameterCountIs(2),
  116       callExpr(callee(functionDecl(hasName("::nexttoward"), parameterCountIs(2),
  128               hasName("::remquo"), parameterCountIs(3),
  138       callExpr(callee(functionDecl(hasName("::scalbln"), parameterCountIs(2),
  147       callExpr(callee(functionDecl(hasName("::scalbn"), parameterCountIs(2),
tools/clang/tools/extra/clang-tidy/readability/ContainerSizeEmptyCheck.cpp
   38                       isConst(), parameterCountIs(0), isPublic(),
   42               has(cxxMethodDecl(isConst(), parameterCountIs(0), isPublic(),
tools/clang/unittests/AST/ASTImporterTest.cpp
 1304                               parameterCountIs(2),
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
  975   DeclarationMatcher Function1Arg = functionDecl(parameterCountIs(1));
 1369     cxxConstructorDecl(isDelegatingConstructor(), parameterCountIs(0))));
 1372     cxxConstructorDecl(isDelegatingConstructor(), parameterCountIs(1))));
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
  528   EXPECT_TRUE(matches("void f(...);", functionDecl(parameterCountIs(0))));
  529   EXPECT_TRUE(matchesC("void f();", functionDecl(parameterCountIs(0))));
  530   EXPECT_TRUE(matches("void f(int, ...);", functionDecl(parameterCountIs(1))));
 1290   EXPECT_TRUE(matches("void f();", functionProtoType(parameterCountIs(0))));
 1293     matchesC("void f(void);", functionProtoType(parameterCountIs(0))));
tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
  267               cxxNewExpr(hasDeclaration(functionDecl(parameterCountIs(1))))));
 2033       functionDecl(parameterCountIs(1))))),