Searched refs:returnStmt (Results 1 – 5 of 5) sorted by relevance
1969 StatementMatcher RetVal = returnStmt(hasReturnValue(binaryOperator())); in TEST()1994 returnStmt(forFunction(hasName("operator=")), in TEST()1999 returnStmt(forFunction(hasName("operator=")), in TEST()2004 returnStmt(forFunction(hasName("operator()")), in TEST()2006 EXPECT_TRUE(matches(CppString2, returnStmt(forFunction(hasName("F2"))))); in TEST()2007 EXPECT_TRUE(notMatches(CppString2, returnStmt(forFunction(hasName("F"))))); in TEST()
296 EXPECT_TRUE(matches("void f() { return; }", returnStmt())); in TEST()
301 returnStmt(hasAncestor(id("fn", functionDecl(returns(pointerType())))))); in main()
378 REGISTER_MATCHER(returnStmt); in RegistryMaps()
1511 const internal::VariadicDynCastAllOfMatcher<Stmt, ReturnStmt> returnStmt; variable