Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DInfiniteLoopCheck.cpp152 expr(forCallable(decl().bind("func"))).bind("condition")), in registerMatchers()
154 loopEndingStmt(forCallable(equalsBoundNode("func"))))))); in registerMatchers()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersTraversalTest.cpp5701 returnStmt(forCallable(functionDecl(hasName("operator="))), in TEST()
5706 returnStmt(forCallable(functionDecl(hasName("operator="))), in TEST()
5711 returnStmt(forCallable(functionDecl(hasName("operator()"))), in TEST()
5714 returnStmt(forCallable(functionDecl(hasName("F2")))))); in TEST()
5716 returnStmt(forCallable(functionDecl(hasName("F")))))); in TEST()
5731 binaryOperator(forCallable(blockDecl())))); in TEST()
5736 binaryOperator(forCallable(objcMethodDecl())))); in TEST()
5751 binaryOperator(forCallable(objcMethodDecl())))); in TEST()
5756 binaryOperator(forCallable(blockDecl())))); in TEST()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp243 REGISTER_MATCHER(forCallable); in RegistryMaps()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h8039 AST_MATCHER_P(Stmt, forCallable, internal::Matcher<Decl>, InnerMatcher) { in AST_MATCHER_P() argument