Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def35 #ifndef UNARY_OPERATION
423 UNARY_OPERATION(PostInc, "++")
426 UNARY_OPERATION(PreInc, "++")
427 UNARY_OPERATION(PreDec, "--")
429 UNARY_OPERATION(AddrOf, "&")
430 UNARY_OPERATION(Deref, "*")
432 UNARY_OPERATION(Plus, "+")
433 UNARY_OPERATION(Minus, "-")
434 UNARY_OPERATION(Not, "~")
435 UNARY_OPERATION(LNot, "!")
[all …]
H A DOperationKinds.h31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, macro
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp158 #define UNARY_OPERATION(Name, Spelling) {Spelling, UO_##Name}, in operationKindFromOverloadedOperator() macro
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1377 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling; in getOpcodeStr() macro