Home
last modified time | relevance | path

Searched refs:UNARY_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
35 #ifndef UNARY_OPERATION
36 # define UNARY_OPERATION(Name, Spelling)
429 UNARY_OPERATION(PostInc, "++")
430 UNARY_OPERATION(PostDec, "--")
432 UNARY_OPERATION(PreInc, "++")
433 UNARY_OPERATION(PreDec, "--")
435 UNARY_OPERATION(AddrOf, "&")
436 UNARY_OPERATION(Deref, "*")
438 UNARY_OPERATION(Plus, "+")
[all …]
H A DOperationKinds.h31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, macro
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp159 #define UNARY_OPERATION(Name, Spelling) {Spelling, UO_##Name}, in operationKindFromOverloadedOperator() macro
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1407 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling; in getOpcodeStr() macro