Home
last modified time | relevance | path

Searched refs:isAssignmentOperator (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DAssignmentInIfConditionCheck.cpp21 binaryOperator(isAssignmentOperator()) in registerMatchers()
25 cxxOperatorCallExpr(isAssignmentOperator()) in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DOwningMemoryCheck.cpp88 binaryOperator(isAssignmentOperator(), hasLHS(IsOwnerType), in registerMatchers()
119 Finder->addMatcher(binaryOperator(isAssignmentOperator(), in registerMatchers()
H A DNarrowingConversionsCheck.cpp157 isAssignmentOperator(), in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/altera/
H A DIdDependentBackwardBranchCheck.cpp37 isAssignmentOperator(), hasRHS(ThreadID), in registerMatchers()
56 allOf(isAssignmentOperator(), hasRHS(RefVarOrField), in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cert/
H A DMutatingCopyCheck.cpp42 binaryOperation(isAssignmentOperator(), hasLHS(IsPartOfSelf)); in registerMatchers()
/llvm-project-15.0.7/clang/unittests/Analysis/FlowSensitive/
H A DSingleVarConstantPropagationTest.cpp134 binaryOperator(isAssignmentOperator(), hasLHS(refToVar())) in transfer()
H A DMultiVarConstantPropagationTest.cpp146 binaryOperator(isAssignmentOperator(), hasLHS(refToVar())) in transfer()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp102 binaryOperator(isAssignmentOperator(), in changeIntBoundNode()
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DSourceCodeBuildersTest.cpp395 matchStmt(Snippet, binaryOperator(isAssignmentOperator(), in TEST()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp263 isAssignmentOperator(), hasLHS(canResolveToExpr(equalsNode(Exp)))); in findDirectMutation()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp397 REGISTER_MATCHER(isAssignmentOperator); in RegistryMaps()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp3948 StatementMatcher BinAsgmtOperator = binaryOperator(isAssignmentOperator()); in TEST_P()
3950 cxxOperatorCallExpr(isAssignmentOperator()); in TEST_P()
H A DASTMatchersTraversalTest.cpp2473 isAssignmentOperator(), in TEST()
2490 isAssignmentOperator(), in TEST()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5668 isAssignmentOperator, in AST_POLYMORPHIC_MATCHER() argument