Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DSpuriouslyWakeUpFunctionsCheck.cpp63 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 DInfiniteLoopCheck.cpp26 mapAnyOf(breakStmt, returnStmt, gotoStmt, cxxThrowExpr).with(Internal), in loopEndingStmt()
156 Finder->addMatcher(mapAnyOf(whileStmt, doStmt, forStmt) in registerMatchers()
H A DUnusedRaiiCheck.cpp30 mapAnyOf(cxxConstructExpr, cxxUnresolvedConstructExpr) in registerMatchers()
H A DSuspiciousStringCompareCheck.cpp113 stmt(anyOf(mapAnyOf(ifStmt, whileStmt, doStmt, forStmt) in registerMatchers()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp524 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 DAvoidGotoCheck.cpp32 auto Loop = mapAnyOf(forStmt, cxxForRangeStmt, whileStmt, doStmt); in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DShrinkToFitCheck.cpp24 const auto ShrinkableExpr = mapAnyOf(memberExpr, declRefExpr); in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DRedundantControlFlowCheck.cpp41 mapAnyOf(forStmt, cxxForRangeStmt, whileStmt, doStmt) in registerMatchers()
H A DContainerSizeEmptyCheck.cpp60 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 DPreferIsaOrDynCastInConditionalsCheck.cpp52 mapAnyOf(declRefExpr, cxxMemberCallExpr).bind("arg"))))) in registerMatchers()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2822 auto mapAnyOf(internal::VariadicDynCastAllOfMatcher<T, U> const &...) { in mapAnyOf() function