Home
last modified time | relevance | path

Searched refs:PostDec (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Doverloaded-operator.cpp115 struct PostDec { struct
116 PostDec operator--(int);
117 PostDec& operator--();
120 void incdec_test(PostInc pi, PostDec pd) { in incdec_test()
122 const PostDec& pd1 = pd--; in incdec_test()
124 PostDec &pd2 = --pd; in incdec_test()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtVisitor.h160 UNARYOP_FALLBACK(PostInc) UNARYOP_FALLBACK(PostDec)
H A DOperationKinds.def423 UNARY_OPERATION(PostDec, "--")