Home
last modified time | relevance | path

Searched refs:BinaryOperators (Results 1 – 8 of 8) sorted by relevance

/llvm-project/clang-tools-extra/clang-tidy/readability/
H A DOperatorsRepresentationCheck.cpp150 BinaryOperators( in OperatorsRepresentationCheck()
154 llvm::erase_if(BinaryOperators, isNotOperatorStr); in OperatorsRepresentationCheck()
161 utils::options::serializeStringList(BinaryOperators)); in storeOptions()
178 if (!isAnyOperatorEnabled(BinaryOperators, OperatorsRepresentation)) in registerBinaryOperatorMatcher()
185 BO_LAnd, getRepresentation(BinaryOperators, "&&", "and")), in registerBinaryOperatorMatcher()
187 BO_LOr, getRepresentation(BinaryOperators, "||", "or")), in registerBinaryOperatorMatcher()
189 BO_NE, getRepresentation(BinaryOperators, "!=", "not_eq")), in registerBinaryOperatorMatcher()
191 BO_Xor, getRepresentation(BinaryOperators, "^", "xor")), in registerBinaryOperatorMatcher()
193 BO_And, getRepresentation(BinaryOperators, "&", "bitand")), in registerBinaryOperatorMatcher()
195 BO_Or, getRepresentation(BinaryOperators, "|", "bitor")), in registerBinaryOperatorMatcher()
[all …]
H A DOperatorsRepresentationCheck.h36 std::vector<llvm::StringRef> BinaryOperators; variable
/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DIntegerDivisionCheck.cpp20 const auto BinaryOperators = binaryOperator( in registerMatchers() local
27 anyOf(BinaryOperators, conditionalOperator(), binaryConditionalOperator(), in registerMatchers()
H A DPointerArithmeticOnPolymorphicObjectCheck.cpp58 const auto BinaryOperators = in registerMatchers() local
66 Finder->addMatcher(BinaryOperators, this); in registerMatchers()
/llvm-project/clang/test/AST/
H A Dast-dump-expr.c55 void BinaryOperators(int a, int b) { in BinaryOperators() function
H A Dast-dump-expr-json.c17 void BinaryOperators(int a, int b) { in BinaryOperators() function
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Doperators-representation.rst76 .. option:: BinaryOperators
/llvm-project/flang/lib/Semantics/
H A Dcheck-omp-structure.cpp2427 using BinaryOperators = std::variant<parser::Expr::Add, in IsReductionAllowedForType()
2434 if constexpr (common::HasMember<T, BinaryOperators>) { in IsReductionAllowedForType()
1841 using BinaryOperators = std::variant<parser::Expr::Add, IsOperatorValid() typedef