HomeSort by: relevance | last modified time | path
    Searched refs:IdentifierExp (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
clone.d 106 scope el = new IdentifierExp(ad.loc, Id.p); // dummy lvalue
327 auto e3 = new BlitExp(loc, new ThisExp(loc), new IdentifierExp(loc, Id.p));
339 e = new BlitExp(loc, new ThisExp(loc), new IdentifierExp(loc, Id.p));
358 new DotVarExp(loc, new IdentifierExp(loc, Id.p), v));
462 scope el = new IdentifierExp(ad.loc, Id.p); // dummy lvalue
562 Expression e = new IdentifierExp(sd.loc, Id.empty);
583 Expression e1 = new IdentifierExp(loc, Id.This);
584 Expression e2 = new IdentifierExp(loc, Id.p);
686 Expression e = new IdentifierExp(sd.loc, Id.empty);
707 Expression e1 = new IdentifierExp(loc, Id.This)
    [all...]
cond.d 328 res[i] = new IdentifierExp(aloc, (*pparams[i])[0].ident);
339 elem = new IdentifierExp(aloc, p.ident);
385 auto catass = new CatAssignExp(aloc, new IdentifierExp(aloc, idres), res[1]);
387 s2.push(new ReturnStatement(aloc, new IdentifierExp(aloc, idres)));
expression.h 137 IdentifierExp* isIdentifierExp();
308 class IdentifierExp : public Expression
313 static IdentifierExp *create(const Loc &loc, Identifier *ident);
319 class DollarExp : public IdentifierExp
visitor.h 189 class IdentifierExp;
486 virtual void visit(IdentifierExp *e) { visit((Expression *)e); }
499 virtual void visit(DollarExp *e) { visit((IdentifierExp *)e); }
arrayop.d 141 Expression id = new IdentifierExp(e.loc, Id.empty);
lambdacomp.d 231 override void visit(IdentifierExp exp)
234 printf("IdentifierExp: %s\n", exp.toChars());
parsetimevisitor.d 194 void visit(AST.IdentifierExp e) { visit(cast(AST.Expression)e); }
207 void visit(AST.DollarExp e) { visit(cast(AST.IdentifierExp)e); }
statementsem.d 340 auto ts = new ThrowStatement(Loc.initial, new IdentifierExp(Loc.initial, id));
1142 auto ei = new ExpInitializer(loc, new IdentifierExp(loc, fs.key.ident));
1656 Initializer ie = new ExpInitializer(fs.loc, new IdentifierExp(fs.loc, id));
2348 Expression sl = new IdentifierExp(ss.loc, Id.empty);
2444 Expression sl = new IdentifierExp(ss.loc, Id.empty);
4089 e = new CallExp(loc, new IdentifierExp(loc, Id._d_delThrowable), e);
4091 Expression ec = new IdentifierExp(loc, Id.ctfe);
func.d 173 auto ts = new ThrowStatement(Loc.initial, new IdentifierExp(Loc.initial, id));
1041 e = new IdentifierExp(Loc.initial, p.ident);
2432 auto resultId = new IdentifierExp(rloc, Id.result);
2508 fdensureParams.push(new IdentifierExp(loc, Id.result));
expression.d 1631 inout(IdentifierExp) isIdentifierExp() { return op == EXP.identifier ? cast(typeof(return))this : null; }
2219 * x++; // PostExp with IdentifierExp
2222 extern (C++) class IdentifierExp : Expression
2228 super(loc, EXP.identifier, __traits(classInstanceSize, IdentifierExp));
2232 static IdentifierExp create(const ref Loc loc, Identifier ident)
2234 return new IdentifierExp(loc, ident);
2258 extern (C++) final class DollarExp : IdentifierExp
cparse.d 673 e = new AST.IdentifierExp(loc, token.ident);
1076 auto ie = new AST.IdentifierExp(loc, t.isTypeIdentifier().ident);
expressionsem.d 2579 override void visit(IdentifierExp exp)
2583 printf("IdentifierExp::semantic('%s')\n", exp.ident.toChars());
6322 Expression __assertFail = new IdentifierExp(exp.loc, Id.empty);
7641 Expression id = new IdentifierExp(exp.loc, Id.empty);
9590 Expression id = new IdentifierExp(ale.loc, Id.empty);
9951 Expression id = new IdentifierExp(exp.loc, Id.empty);
11431 Expression cl = new IdentifierExp(exp.loc, Id.empty);
11499 Expression al = new IdentifierExp(exp.loc, Id.empty);
11776 Expression __equals = new IdentifierExp(exp.loc, Id.empty);
12582 // BUG: handle other cases like in IdentifierExp::semantic(
    [all...]
declaration.d 1474 e = new CallExp(loc, new IdentifierExp(loc, Id.__ArrayDtor), se);
opover.d 946 Expression result = new IdentifierExp(e.loc, Id.empty);
semantic3.d 1454 auto ts = new ThrowStatement(ctor.loc, new IdentifierExp(ctor.loc, id));
traits.d 2083 exps.push(new IdentifierExp(e.loc, x.ident));
dsymbolsem.d 4245 Loc.initial, new IdentifierExp(Loc.initial, v.ident), IntegerExp.literal!1);
4341 Loc.initial, new IdentifierExp(Loc.initial, v.ident), IntegerExp.literal!(-1));
6903 (*args)[0] = new IdentifierExp(loc, var);
dtemplate.d 4694 emptyArrayElement = new IdentifierExp(Loc.initial, Id.p); // dummy
5050 override void visit(IdentifierExp e)
5052 //printf("IdentifierExp.reliesOnTemplateParameters('%s')\n", e.toChars());
parse.d 7867 e = new AST.IdentifierExp(loc, id);
7879 e = new AST.IdentifierExp(loc, Id.empty);
hdrgen.d 1953 void visitIdentifier(IdentifierExp e)
typesem.d 576 return typeToExpressionHelper(t, new IdentifierExp(t.loc, t.ident));
mtype.d 7227 scope el = new IdentifierExp(Loc.initial, Id.p); // dummy lvalue
  /src/external/gpl3/gdb.old/dist/gdb/
d-exp.y 131 %type <sval> IdentifierExp
438 | IdentifierExp
479 | TypeExp '.' IdentifierExp
564 IdentifierExp:
  /src/external/gpl3/gdb/dist/gdb/
d-exp.y 131 %type <sval> IdentifierExp
438 | IdentifierExp
479 | TypeExp '.' IdentifierExp
564 IdentifierExp:

Completed in 144 milliseconds