Home
last modified time | relevance | path

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

/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp802 DeclarationMatcher Function1Arg = functionDecl(parameterCountIs(1)); in TEST() local
803 EXPECT_TRUE(matches("void f(int i) {}", Function1Arg)); in TEST()
804 EXPECT_TRUE(matches("class X { void f(int i) {} };", Function1Arg)); in TEST()
805 EXPECT_TRUE(notMatches("void f() {}", Function1Arg)); in TEST()
806 EXPECT_TRUE(notMatches("void f(int i, int j, int k) {}", Function1Arg)); in TEST()
807 EXPECT_TRUE(matches("void f(int i, ...) {};", Function1Arg)); in TEST()