Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DSuspiciousStringCompareCheck.cpp88 const auto ComparisonBinaryOperator = binaryOperator(isComparisonOperator()); in registerMatchers()
146 binaryOperator(unless(anyOf(isComparisonOperator(), hasOperatorName("&&"), in registerMatchers()
161 binaryOperator(isComparisonOperator(), in registerMatchers()
DMisplacedWideningCastCheck.cpp51 binaryOperator(isComparisonOperator(), hasEitherOperand(Cast)), this); in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/android/
DComparisonInTempFailureRetryCheck.cpp51 binaryOperator(isComparisonOperator()).bind("inner")))) in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/misc/
DRedundantExpressionCheck.cpp577 isComparisonOperator(), expr().bind(Id), in matchRelationalIntegerConstantExpr()
842 anyOf(isComparisonOperator(), in registerMatchers()
946 binaryOperator(isComparisonOperator(), in registerMatchers()
956 binaryOperator(isComparisonOperator(), in registerMatchers()
965 binaryOperator(isComparisonOperator(), hasLHS(BinOpCstLeft), in registerMatchers()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DIterator.h149 bool isComparisonOperator(OverloadedOperatorKind OK);
DMismatchedIteratorChecker.cpp70 isComparisonOperator(Func->getOverloadedOperator())) { in checkPreCall()
DIterator.cpp71 bool isComparisonOperator(OverloadedOperatorKind OK) { in isComparisonOperator() function
/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DContainerSizeEmptyCheck.cpp45 hasParent(binaryOperator(isComparisonOperator(), in registerMatchers()
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp374 REGISTER_MATCHER(isComparisonOperator); in RegistryMaps()
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp3465 StatementMatcher BinCompOperator = binaryOperator(isComparisonOperator()); in TEST_P()
3467 cxxOperatorCallExpr(isComparisonOperator()); in TEST_P()
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h5212 AST_POLYMORPHIC_MATCHER(isComparisonOperator, in AST_POLYMORPHIC_MATCHER() argument