Home
last modified time | relevance | path

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

/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1489 DeclarationMatcher Function1Arg = functionDecl(parameterCountIs(1)); in TEST() local
1490 EXPECT_TRUE(matches("void f(int i) {}", Function1Arg)); in TEST()
1491 EXPECT_TRUE(matches("class X { void f(int i) {} };", Function1Arg)); in TEST()
1492 EXPECT_TRUE(notMatches("void f() {}", Function1Arg)); in TEST()
1493 EXPECT_TRUE(notMatches("void f(int i, int j, int k) {}", Function1Arg)); in TEST()