Home
last modified time | relevance | path

Searched refs:parameterCountIs (Results 1 – 5 of 5) sorted by relevance

/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp471 EXPECT_TRUE(matches("void f(...);", functionDecl(parameterCountIs(0)))); in TEST()
472 EXPECT_TRUE(matchesC("void f();", functionDecl(parameterCountIs(0)))); in TEST()
473 EXPECT_TRUE(matches("void f(int, ...);", functionDecl(parameterCountIs(1)))); in TEST()
1176 EXPECT_TRUE(matches("void f();", functionProtoType(parameterCountIs(0)))); in TEST()
1179 matchesC("void f(void);", functionProtoType(parameterCountIs(0)))); in TEST()
DASTMatchersNarrowingTest.cpp802 DeclarationMatcher Function1Arg = functionDecl(parameterCountIs(1)); in TEST()
1136 cxxConstructorDecl(isDelegatingConstructor(), parameterCountIs(0)))); in TEST()
1139 cxxConstructorDecl(isDelegatingConstructor(), parameterCountIs(1)))); in TEST()
DASTMatchersTraversalTest.cpp1483 functionDecl(parameterCountIs(1))))), in TEST()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp360 REGISTER_MATCHER(parameterCountIs); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3270 AST_POLYMORPHIC_MATCHER_P(parameterCountIs, in AST_POLYMORPHIC_MATCHER_P() argument