Searched refs:PreExp (Results 1 - 16 of 16) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dvisitor.h242 class PreExp;
536 virtual void visit(PreExp *e) { visit((UnaExp *)e); }
H A Dexpression.h1118 class PreExp : public UnaExp class in inherits:UnaExp
1121 PreExp(TOK op, Loc loc, Expression *e);
H A Dexpression.c6196 /************************* PreExp ***********************************/
6198 PreExp::PreExp(TOK op, Loc loc, Expression *e) function in class:PreExp
6199 : UnaExp(loc, op, sizeof(PreExp), e)
H A Dparse.c7306 e = new PreExp(TOKpreplusplus, loc, e);
7313 e = new PreExp(TOKpreminusminus, loc, e);
H A Dhdrgen.c2976 void visit(PreExp *e)
H A Dexpressionsem.c5123 eb = new PreExp(exp->op == TOKplusplus ? TOKpreplusplus : TOKpreminusminus, exp->loc, eb);
5153 void visit(PreExp *exp)
5156 // printf("PreExp::semantic('%s')\n", exp->toChars());
H A Dstatementsem.c1899 increment = new PreExp(TOKpreplusplus, loc, new VarExp(loc, fs->key));
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dvisitor.h251 class PreExp;
504 virtual void visit(PreExp *e) { visit((UnaExp *)e); }
H A Dexpression.h192 PreExp* isPreExp();
1039 class PreExp : public UnaExp class in inherits:UnaExp
H A Dparsetimevisitor.d212 void visit(AST.PreExp e) { visit(cast(AST.UnaExp)e); }
H A Dcparse.d905 e = new AST.PreExp(EXP.prePlusPlus, loc, e);
912 e = new AST.PreExp(EXP.preMinusMinus, loc, e);
H A Dexpression.d1688 inout(PreExp) isPreExp() { return (op == EXP.prePlusPlus || op == EXP.preMinusMinus) ? cast(typeof(return))this : null; }
5925 extern (C++) final class PreExp : UnaExp
5929 super(loc, op, __traits(classInstanceSize, PreExp), e);
H A Dparse.d8427 e = new AST.PreExp(EXP.prePlusPlus, loc, e);
8434 e = new AST.PreExp(EXP.preMinusMinus, loc, e);
H A Dstatementsem.d1830 increment = new PreExp(EXP.prePlusPlus, loc, new VarExp(loc, fs.key));
H A Dhdrgen.d2510 void visitPre(PreExp e)
H A Dexpressionsem.d8598 eb = new PreExp(exp.op == EXP.plusPlus ? EXP.prePlusPlus : EXP.preMinusMinus, exp.loc, eb);
8630 override void visit(PreExp exp)
8633 // printf("PreExp::semantic('%s')\n", toChars());

Completed in 247 milliseconds