Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def17 /// BINARY_OPERATION or UNARY_OPERATION macro, each of which can be specified by
31 #ifndef BINARY_OPERATION
32 # define BINARY_OPERATION(Name, Spelling)
376 BINARY_OPERATION(PtrMemD, ".*")
377 BINARY_OPERATION(PtrMemI, "->*")
379 BINARY_OPERATION(Mul, "*")
380 BINARY_OPERATION(Div, "/")
381 BINARY_OPERATION(Rem, "%")
383 BINARY_OPERATION(Add, "+")
384 BINARY_OPERATION(Sub, "-")
[all …]
H A DOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name, macro
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp155 #define BINARY_OPERATION(Name, Spelling) {Spelling, BO_##Name}, in operationKindFromOverloadedOperator() macro
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2136 #define BINARY_OPERATION(Name, Spelling) case BO_##Name: return Spelling; in getOpcodeStr() macro