Home
last modified time | relevance | path

Searched refs:BINARY_OPERATION (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def31 #ifndef BINARY_OPERATION
373 BINARY_OPERATION(Mul, "*")
374 BINARY_OPERATION(Div, "/")
375 BINARY_OPERATION(Rem, "%")
377 BINARY_OPERATION(Add, "+")
378 BINARY_OPERATION(Sub, "-")
385 BINARY_OPERATION(LT, "<")
386 BINARY_OPERATION(GT, ">")
387 BINARY_OPERATION(LE, "<=")
397 BINARY_OPERATION(Or, "|")
[all …]
H A DOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name, macro
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp154 #define BINARY_OPERATION(Name, Spelling) {Spelling, BO_##Name}, in operationKindFromOverloadedOperator() macro
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2111 #define BINARY_OPERATION(Name, Spelling) case BO_##Name: return Spelling; in getOpcodeStr() macro