Searched refs:mapAnyOf (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | SpuriouslyWakeUpFunctionsCheck.cpp | 63 unless(hasDescendant(mapAnyOf(ifStmt, whileStmt, forStmt, doStmt) in registerMatchers() 71 hasDescendant(mapAnyOf(ifStmt, whileStmt, forStmt, doStmt) in registerMatchers() 73 hasParent(mapAnyOf(whileStmt, forStmt, doStmt)), in registerMatchers() 75 hasParent(mapAnyOf(whileStmt, forStmt, doStmt))))))), in registerMatchers()
|
| H A D | InfiniteLoopCheck.cpp | 26 mapAnyOf(breakStmt, returnStmt, gotoStmt, cxxThrowExpr).with(Internal), in loopEndingStmt() 156 Finder->addMatcher(mapAnyOf(whileStmt, doStmt, forStmt) in registerMatchers()
|
| H A D | UnusedRaiiCheck.cpp | 30 mapAnyOf(cxxConstructExpr, cxxUnresolvedConstructExpr) in registerMatchers()
|
| H A D | SuspiciousStringCompareCheck.cpp | 113 stmt(anyOf(mapAnyOf(ifStmt, whileStmt, doStmt, forStmt) in registerMatchers()
|
| /llvm-project-15.0.7/clang/unittests/ASTMatchers/ |
| H A D | ASTMatchersNarrowingTest.cpp | 524 mapAnyOf(callExpr, cxxConstructExpr) in TEST_P() 588 mapAnyOf(binaryOperator, cxxOperatorCallExpr) in TEST_P() 597 mapAnyOf(binaryOperator, cxxOperatorCallExpr) in TEST_P() 606 mapAnyOf(binaryOperator, cxxOperatorCallExpr) in TEST_P() 646 mapAnyOf(binaryOperator, cxxOperatorCallExpr) in TEST_P() 658 mapAnyOf(binaryOperator, cxxOperatorCallExpr) in TEST_P() 670 mapAnyOf(binaryOperator, cxxOperatorCallExpr) in TEST_P() 827 mapAnyOf(unaryOperator, cxxOperatorCallExpr) in TEST_P() 835 mapAnyOf(unaryOperator, cxxOperatorCallExpr) in TEST_P() 843 mapAnyOf(unaryOperator, cxxOperatorCallExpr) in TEST_P() [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
| H A D | AvoidGotoCheck.cpp | 32 auto Loop = mapAnyOf(forStmt, cxxForRangeStmt, whileStmt, doStmt); in registerMatchers()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | ShrinkToFitCheck.cpp | 24 const auto ShrinkableExpr = mapAnyOf(memberExpr, declRefExpr); in registerMatchers()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | RedundantControlFlowCheck.cpp | 41 mapAnyOf(forStmt, cxxForRangeStmt, whileStmt, doStmt) in registerMatchers()
|
| H A D | ContainerSizeEmptyCheck.cpp | 60 mapAnyOf(varDecl, fieldDecl).with(hasType(booleanType()))), in AST_MATCHER() 67 mapAnyOf(ifStmt, doStmt, whileStmt, forStmt, in AST_MATCHER()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/llvm/ |
| H A D | PreferIsaOrDynCastInConditionalsCheck.cpp | 52 mapAnyOf(declRefExpr, cxxMemberCallExpr).bind("arg"))))) in registerMatchers()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2822 auto mapAnyOf(internal::VariadicDynCastAllOfMatcher<T, U> const &...) { in mapAnyOf() function
|