Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DOperationKinds.def35 #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 DOperationKinds.h31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, macro
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp158 #define UNARY_OPERATION(Name, Spelling) {Spelling, UO_##Name}, in operationKindFromOverloadedOperator() macro
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp1308 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling; in getOpcodeStr() macro