Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:hasParameter

810       methodDecl(hasParameter(0, hasType(asString("int"))))));
1135 TEST(HasParameter, CallsInnerMatcher) {
1137 methodDecl(hasParameter(0, varDecl()))));
1139 methodDecl(hasParameter(0, hasName("x")))));
1142 TEST(HasParameter, DoesNotMatchIfIndexOutOfBounds) {
1144 methodDecl(hasParameter(42, varDecl()))));
1149 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
1151 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
1153 methodDecl(hasParameter(0,
1156 methodDecl(hasParameter(0,
2641 functionDecl(hasParameter(0, hasType(recordDecl(hasName("A")))),