/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | IntegerDivision.h | 20 class BinaryOperator; variable
|
/llvm-project/llvm/include/llvm/Analysis/ |
H A D | InstructionSimplify.h | 42 class BinaryOperator; global() variable
|
/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
H A D | NaryReassociate.h | 89 class BinaryOperator; variable
|
H A D | JumpThreading.h | 33 class BinaryOperator; variable
|
H A D | Reassociate.h | 37 class BinaryOperator; variable
|
/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
H A D | IncDecInConditionsCheck.cpp | 18 AST_MATCHER(BinaryOperator, isLogicalOperator) { return Node.isLogicalOp(); } in AST_MATCHER() argument
|
H A D | ChainedComparisonCheck.cpp | 29 AST_MATCHER(BinaryOperator, in AST_MATCHER() argument
|
/llvm-project/clang-tools-extra/clang-tidy/utils/ |
H A D | Matchers.h | 19 AST_MATCHER(BinaryOperator, isRelationalOperator) { in AST_MATCHER() argument 23 AST_MATCHER(BinaryOperator, isEqualityOperator) { return Node.isEqualityOp(); } in AST_MATCHER() argument
|
/llvm-project/clang/test/Sema/ |
H A D | warn-double-promotion.c | 45 void BinaryOperator(float f, double d, long double ld) { in BinaryOperator() function
|
/llvm-project/clang-tools-extra/clang-tidy/readability/ |
H A D | UseStdMinMaxCheck.cpp | 131 auto BinaryOperator = registerMatchers() local
|
H A D | OperatorsRepresentationCheck.cpp | 39 AST_MATCHER_P2(BinaryOperator, hasInvalidBinaryOperatorRepresentation, in AST_MATCHER_P2() argument
|
/llvm-project/clang/include/clang/AST/ |
H A D | ComputeDependence.h | 35 class BinaryOperator; variable
|
H A D | Expr.h | 3874 explicit BinaryOperator(EmptyShell Empty) : Expr(BinaryOperatorClass, Empty) { BinaryOperator() function 4076 BinaryOperator(StmtClass SC, EmptyShell Empty) : Expr(SC, Empty) { BinaryOperator() function [all...] |
/llvm-project/clang-tools-extra/clang-tidy/misc/ |
H A D | RedundantExpressionCheck.cpp | 444 AST_MATCHER(BinaryOperator, operandsAreEquivalent) { in AST_MATCHER() argument 448 AST_MATCHER(BinaryOperator, nestedOperandsAreEquivalent) { in AST_MATCHER() argument 465 AST_MATCHER(BinaryOperator, binaryOperatorIsInMacro) { in AST_MATCHER() argument [all...] |
/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
H A D | BugReporterVisitors.h | 33 class BinaryOperator; variable
|
/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyCommon.h | 46 class BinaryOperator; variable
|
/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 5961 BinaryOperator, CXXOperatorCallExpr, in AST_POLYMORPHIC_MATCHER() argument 6004 AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, in AST_POLYMORPHIC_MATCHER_P() argument 5900 AST_POLYMORPHIC_MATCHER_P(hasOperatorName,AST_POLYMORPHIC_SUPPORTED_TYPES (BinaryOperator,CXXOperatorCallExpr,CXXRewrittenBinaryOperator,CXXFoldExpr,UnaryOperator),std::string,Name) AST_POLYMORPHIC_MATCHER_P() argument 5940 AST_POLYMORPHIC_MATCHER(isAssignmentOperator,AST_POLYMORPHIC_SUPPORTED_TYPES (BinaryOperator,CXXOperatorCallExpr,CXXRewrittenBinaryOperator)) AST_POLYMORPHIC_MATCHER() argument 5974 AST_POLYMORPHIC_MATCHER_P(hasLHS,AST_POLYMORPHIC_SUPPORTED_TYPES (BinaryOperator,CXXOperatorCallExpr,CXXRewrittenBinaryOperator,ArraySubscriptExpr,CXXFoldExpr),internal::Matcher<Expr>,InnerMatcher) AST_POLYMORPHIC_MATCHER_P() argument 5991 AST_POLYMORPHIC_MATCHER_P(hasRHS,AST_POLYMORPHIC_SUPPORTED_TYPES (BinaryOperator,CXXOperatorCallExpr,CXXRewrittenBinaryOperator,ArraySubscriptExpr,CXXFoldExpr),internal::Matcher<Expr>,InnerMatcher) AST_POLYMORPHIC_MATCHER_P() argument 6025 AST_POLYMORPHIC_MATCHER_P2(hasOperands,AST_POLYMORPHIC_SUPPORTED_TYPES (BinaryOperator,CXXOperatorCallExpr,CXXFoldExpr,CXXRewrittenBinaryOperator),internal::Matcher<Expr>,Matcher1,internal::Matcher<Expr>,Matcher2) AST_POLYMORPHIC_MATCHER_P2() argument [all...] |
/llvm-project/clang/include/clang/Analysis/ |
H A D | PathDiagnostic.h | 41 class BinaryOperator; variable
|
H A D | CFG.h | 40 class BinaryOperator; variable
|
/llvm-project/clang/lib/Analysis/ |
H A D | CalledOnceCheck.cpp | 564 std::optional<Clarification> VisitBinaryOperator(const BinaryOperator *) { in VisitBinaryOperator() argument
|
/llvm-project/clang/unittests/libclang/ |
H A D | LibclangTest.cpp | 1141 TEST_F(LibclangParseTest, BinaryOperator) { in TEST_F() argument
|
/llvm-project/clang/unittests/Tooling/Syntax/ |
H A D | BuildTreeTest.cpp | 1659 TEST_P(BuildSyntaxTreeTest,BinaryOperator) TEST_P() argument
|
/llvm-project/llvm/docs/ |
H A D | ProgrammersManual.rst | 3777 .. _BinaryOperator: global() target
|
/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 4762 BinaryOperator::BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, BinaryOperator() function in BinaryOperator 4779 BinaryOperator::BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, BinaryOperator() function in BinaryOperator [all...] |
/llvm-project/clang/unittests/AST/ |
H A D | StructuralEquivalenceTest.cpp | 2056 TEST_F(StructuralEquivalenceStmtTest,BinaryOperator) TEST_F() argument
|