Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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)
369 BINARY_OPERATION(PtrMemD, ".*")
370 BINARY_OPERATION(PtrMemI, "->*")
372 BINARY_OPERATION(Mul, "*")
373 BINARY_OPERATION(Div, "/")
374 BINARY_OPERATION(Rem, "%")
376 BINARY_OPERATION(Add, "+")
377 BINARY_OPERATION(Sub, "-")
[all …]
H A DOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name, macro
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp1999 #define BINARY_OPERATION(Name, Spelling) case BO_##Name: return Spelling; in getOpcodeStr() macro