Home
last modified time | relevance | path

Searched refs:UNARY_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
35 #ifndef UNARY_OPERATION
36 # define UNARY_OPERATION(Name, Spelling)
422 UNARY_OPERATION(PostInc, "++")
423 UNARY_OPERATION(PostDec, "--")
425 UNARY_OPERATION(PreInc, "++")
426 UNARY_OPERATION(PreDec, "--")
428 UNARY_OPERATION(AddrOf, "&")
429 UNARY_OPERATION(Deref, "*")
431 UNARY_OPERATION(Plus, "+")
[all …]
H A DOperationKinds.h31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, macro
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp1270 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling; in getOpcodeStr() macro