Searched refs:prePlusPlus (Results 1 – 11 of 11) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | mustuse.d | 156 || e.op == EXP.prePlusPlus in isIncrementOrDecrement()
|
H A D | tokens.h | 387 prePlusPlus, enumerator
|
H A D | optimize.d | 900 || 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 D | tokens.d | 377 prePlusPlus,
|
H A D | expression.d | 1538 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 D | opover.d | 393 if (e.op != EXP.prePlusPlus && e.op != EXP.preMinusMinus) in visitUna()
|
H A D | hdrgen.d | 2612 case EXP.prePlusPlus: return visitPre(e.isPreExp()); in expressionPrettyPrint() 4063 EXP.prePlusPlus : "++", in EXPtoString()
|
H A D | cparse.d | 905 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in cparseUnaryExp()
|
H A D | parse.d | 8427 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in parseUnaryExp() 9421 EXP.prePlusPlus : PREC.primary,
|
H A D | statementsem.d | 1830 increment = new PreExp(EXP.prePlusPlus, loc, new VarExp(loc, fs.key)); in package()
|
H A D | expressionsem.d | 8598 … eb = new PreExp(exp.op == EXP.plusPlus ? EXP.prePlusPlus : EXP.preMinusMinus, exp.loc, eb); in visit() 8641 if (exp.op == EXP.prePlusPlus) in visit()
|