Searched refs:UNARY_OPERATION (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | OperationKinds.def | 35 #ifndef UNARY_OPERATION 422 UNARY_OPERATION(PostInc, "++") 425 UNARY_OPERATION(PreInc, "++") 426 UNARY_OPERATION(PreDec, "--") 428 UNARY_OPERATION(AddrOf, "&") 429 UNARY_OPERATION(Deref, "*") 431 UNARY_OPERATION(Plus, "+") 432 UNARY_OPERATION(Minus, "-") 433 UNARY_OPERATION(Not, "~") 434 UNARY_OPERATION(LNot, "!") [all …]
|
| H A D | OperationKinds.h | 31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, macro
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | CheckerHelpers.cpp | 158 #define UNARY_OPERATION(Name, Spelling) {Spelling, UO_##Name}, in operationKindFromOverloadedOperator() macro
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Expr.cpp | 1308 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling; in getOpcodeStr() macro
|