Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpression.h192 PreExp* isPreExp();
1039 class PreExp : public UnaExp
H A Dvisitor.h251 class PreExp; variable
504 virtual void visit(PreExp *e) { visit((UnaExp *)e); } in visit()
H A Dparsetimevisitor.d212 void visit(AST.PreExp e) { visit(cast(AST.UnaExp)e); } in ParseTimeVisitor()
H A Dcparse.d905 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in cparseUnaryExp()
912 e = new AST.PreExp(EXP.preMinusMinus, loc, e); in cparseUnaryExp()
H A Dexpression.d1688 …inout(PreExp) isPreExp() { return (op == EXP.prePlusPlus || op == EXP.preMinusMinus) ? cas… in isPreExp()
5925 extern (C++) final class PreExp : UnaExp
5929 super(loc, op, __traits(classInstanceSize, PreExp), e); in this()
H A Dparse.d8427 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in parseUnaryExp()
8434 e = new AST.PreExp(EXP.preMinusMinus, loc, e); in parseUnaryExp()
H A Dhdrgen.d2510 void visitPre(PreExp e) in expressionPrettyPrint()
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()
8630 override void visit(PreExp exp) in visit()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dvisitor.h242 class PreExp; variable
536 virtual void visit(PreExp *e) { visit((UnaExp *)e); } in visit()
H A Dexpression.h1118 class PreExp : public UnaExp
1121 PreExp(TOK op, Loc loc, Expression *e);
H A Dexpression.c6198 PreExp::PreExp(TOK op, Loc loc, Expression *e) in PreExp() function
6199 : UnaExp(loc, op, sizeof(PreExp), e) in PreExp()
H A Dparse.c7306 e = new PreExp(TOKpreplusplus, loc, e); in parseUnaryExp()
7313 e = new PreExp(TOKpreminusminus, loc, e); in parseUnaryExp()
H A Dhdrgen.c2976 void visit(PreExp *e) in visit()
H A Dexpressionsem.c5123 … eb = new PreExp(exp->op == TOKplusplus ? TOKpreplusplus : TOKpreminusminus, exp->loc, eb); in visit()
5153 void visit(PreExp *exp) in visit()
H A Dstatementsem.c1899 increment = new PreExp(TOKpreplusplus, loc, new VarExp(loc, fs->key)); in visit()