Searched refs:PreExp (Results 1 – 16 of 16) sorted by relevance
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | expression.h | 192 PreExp* isPreExp(); 1039 class PreExp : public UnaExp
|
| H A D | visitor.h | 251 class PreExp; variable 504 virtual void visit(PreExp *e) { visit((UnaExp *)e); } in visit()
|
| H A D | parsetimevisitor.d | 212 void visit(AST.PreExp e) { visit(cast(AST.UnaExp)e); } in ParseTimeVisitor()
|
| H A D | cparse.d | 905 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in cparseUnaryExp() 912 e = new AST.PreExp(EXP.preMinusMinus, loc, e); in cparseUnaryExp()
|
| H A D | expression.d | 1688 …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 D | parse.d | 8427 e = new AST.PreExp(EXP.prePlusPlus, loc, e); in parseUnaryExp() 8434 e = new AST.PreExp(EXP.preMinusMinus, loc, e); in parseUnaryExp()
|
| H A D | hdrgen.d | 2510 void visitPre(PreExp e) in expressionPrettyPrint()
|
| 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() 8630 override void visit(PreExp exp) in visit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | visitor.h | 242 class PreExp; variable 536 virtual void visit(PreExp *e) { visit((UnaExp *)e); } in visit()
|
| H A D | expression.h | 1118 class PreExp : public UnaExp 1121 PreExp(TOK op, Loc loc, Expression *e);
|
| H A D | expression.c | 6198 PreExp::PreExp(TOK op, Loc loc, Expression *e) in PreExp() function 6199 : UnaExp(loc, op, sizeof(PreExp), e) in PreExp()
|
| H A D | parse.c | 7306 e = new PreExp(TOKpreplusplus, loc, e); in parseUnaryExp() 7313 e = new PreExp(TOKpreminusminus, loc, e); in parseUnaryExp()
|
| H A D | hdrgen.c | 2976 void visit(PreExp *e) in visit()
|
| H A D | expressionsem.c | 5123 … eb = new PreExp(exp->op == TOKplusplus ? TOKpreplusplus : TOKpreminusminus, exp->loc, eb); in visit() 5153 void visit(PreExp *exp) in visit()
|
| H A D | statementsem.c | 1899 increment = new PreExp(TOKpreplusplus, loc, new VarExp(loc, fs->key)); in visit()
|