Searched refs:binaryOperator (Results 1 – 10 of 10) sorted by relevance
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | NumberObjectConversionChecker.cpp | 267 binaryOperator(allOf(hasOperatorName("="), in checkASTCodeBody() 286 binaryOperator(allOf(anyOf(hasOperatorName("=="), hasOperatorName("!=")), in checkASTCodeBody() 293 binaryOperator(allOf(anyOf(hasOperatorName(">="), hasOperatorName(">"), in checkASTCodeBody()
|
H A D | GCDAntipatternChecker.cpp | 100 forEachDescendant(binaryOperator(bindAssignmentToDecl(SemaphoreBinding), in findGCDAntiPatternWithSemaphore() 142 forEachDescendant(binaryOperator(bindAssignmentToDecl(GroupBinding), in findGCDAntiPatternWithGroup()
|
H A D | ObjCAutoreleaseWriteChecker.cpp | 183 auto WritesIntoM = binaryOperator( in checkASTCodeBody()
|
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | LoopUnrolling.cpp | 87 return binaryOperator( in simpleCondition() 105 binaryOperator(isAssignmentOperator(), in changeIntBoundNode() 154 binaryOperator(hasLHS(declRefExpr(to(varDecl( in forLoopMatcher()
|
H A D | BugReporterVisitors.cpp | 622 StatementMatcher WriteIntoIvarM = binaryOperator( in potentiallyWritesIntoIvar()
|
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ExprMutationAnalyzer.cpp | 337 binaryOperator(isAssignmentOperator(), hasLHS(canResolveToExpr(Exp))); in findDirectMutation() 353 // resolved and modelled as `binaryOperator` on a dependent type. in findDirectMutation() 356 binaryOperator(isTypeDependent(), in findDirectMutation() 464 binaryOperator(hasOperatorName(".*"), in findArrayElementMutation()
|
H A D | UnsafeBufferUsage.cpp | 268 binaryOperator( in isInUnspecifiedPointerContext() 302 binaryOperator(hasAnyOperatorName("!=", "==", "<", "<=", ">", ">="), in isInUnspecifiedPointerContext() 308 binaryOperator(hasOperatorName("-"), 716 return stmt(binaryOperator(anyOf(PtrAtLeft, PtrAtRight)) in matcher() 851 auto PtrAssignExpr = binaryOperator( in matcher() 900 auto PtrAssignExpr = binaryOperator( 1317 binaryOperator(hasOperatorName("+="), in anyConflict() 1364 binaryOperator(hasOperatorName("+"), hasLHS(ThePtr), 1367 binaryOperator(hasOperatorName("+"), hasRHS(ThePtr), in getFixits()
|
/freebsd-src/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 151 REGISTER_MATCHER(binaryOperator); in RegistryMaps()
|
/freebsd-src/contrib/llvm-project/clang/lib/ASTMatchers/ |
H A D | ASTMatchersInternal.cpp | 959 binaryOperator; variable
|
/freebsd-src/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 2050 /// binaryOperator matcher. 2570 binaryOperator; 2911 /// might be represented in the clang AST as a binaryOperator, a 2914 /// * whether the types of var1 and var2 are fundamental (binaryOperator) or at 2917 /// vars is a dependent-type (binaryOperator) 5885 /// Example matches a || b (matcher = binaryOperator(hasOperatorName("||"))) 5926 /// Example 1: matches a += b (matcher = binaryOperator(isAssignmentOperator())) 5947 /// Example 1: matches a == b (matcher = binaryOperator(isComparisonOperator())) 5968 /// Example matches a (matcher = binaryOperator(hasLHS())) in AST_POLYMORPHIC_MATCHER_P() 5985 /// Example matches b (matcher = binaryOperator(hasRH in AST_POLYMORPHIC_MATCHER_P() [all...] |