Home
last modified time | relevance | path

Searched refs:prePlusPlus (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmustuse.d156 || e.op == EXP.prePlusPlus in isIncrementOrDecrement()
H A Dtokens.h387 prePlusPlus, enumerator
H A Doptimize.d900 || e.op == EXP.prePlusPlus || e.op == EXP.preMinusMinus; in Expression_optimize()
1328 case EXP.prePlusPlus: visitUna(cast(UnaExp)ex); break; in Expression_optimize()
H A Dtokens.d377 prePlusPlus,
H A Dexpression.d1538 case EXP.prePlusPlus:
1688 …inout(PreExp) isPreExp() { return (op == EXP.prePlusPlus || op == EXP.preMinusMinus) ? cas… in isPreExp()
5930 assert(op == EXP.preMinusMinus || op == EXP.prePlusPlus); in this()
7215 EXP.delegateFunctionPointer, EXP.preMinusMinus, EXP.prePlusPlus,
H A Dopover.d393 if (e.op != EXP.prePlusPlus && e.op != EXP.preMinusMinus) in visitUna()
H A Dhdrgen.d2612 case EXP.prePlusPlus: return visitPre(e.isPreExp()); in expressionPrettyPrint()
4063 EXP.prePlusPlus : "++", in EXPtoString()
H A Dcparse.d905 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in cparseUnaryExp()
H A Dparse.d8427 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in parseUnaryExp()
9421 EXP.prePlusPlus : PREC.primary,
H A Dstatementsem.d1830 increment = new PreExp(EXP.prePlusPlus, loc, new VarExp(loc, fs.key)); in package()
H A Dexpressionsem.d8598 … eb = new PreExp(exp.op == EXP.plusPlus ? EXP.prePlusPlus : EXP.preMinusMinus, exp.loc, eb); in visit()
8641 if (exp.op == EXP.prePlusPlus) in visit()