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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
safe.d 51 DotVarExp dve = cast(DotVarExp)e;
52 if (VarDeclaration v = dve.var.isVarDeclaration())
escape.d 476 DotVarExp dve = ce.e1.isDotVarExp();
477 CtorDeclaration ctor = dve.var.isCtorDeclaration();
496 if (checkParamArgumentReturn(sc, dve.e1, arg, p, gag))
1736 DotVarExp dve = e.e1.isDotVarExp();
1737 FuncDeclaration fd = dve.var.isFuncDeclaration();
1742 /* Calling a non-static member function dve.var, which is returning `this`, and with dve.e1 representing `this`
1770 dve.e1.accept(this);
1780 dve.e1.accept(this);
1783 escapeByRef(dve.e1, er, live)
    [all...]
traits.d 83 if (auto dve = e.isDotVarExp())
84 return dve.var;
1082 else if (auto dve = ex.isDotVarExp)
1084 if (dve.var.isFuncDeclaration() || dve.var.isOverDeclaration())
1085 f = dve.var;
1086 if (dve.e1.op == EXP.dotType || dve.e1.op == EXP.this_)
1089 ex = dve.e1;
expressionsem.d 793 DotVarExp dve = e1.isDotVarExp();
794 return handleFuncDecl(dve.var.isFuncDeclaration());
1242 DotVarExp dve = e1.isDotVarExp();
1243 s = dve.var;
1245 tthis = dve.e1.type;
4645 DotVarExp dve;
4650 dve = cast(DotVarExp)exp.e1;
4652 s = dve.var;
4657 dve = null;
4720 dve.var = exp.f
    [all...]
ctfeexpr.d 401 else if (auto dve = e.isDotVarExp())
403 emplaceExp!(DotVarExp)(&ue, e.loc, dve.e1, dve.var, dve.hasOverloads);
721 if (auto dve = e.isDotVarExp())
723 auto ex = dve.e1;
724 const v = dve.var.isVarDeclaration();
expression.d 420 if (auto dve = ce.e1.isDotVarExp())
422 if (dve.var.isCtorDeclaration())
425 if (auto comma = dve.e1.isCommaExp())
1008 if (auto dve = this.isDotVarExp())
1010 if (isNeedThisScope(sc, dve.var))
5105 if (auto dve = e1.isDotVarExp())
5106 if (dve.var.isCtorDeclaration())
5169 if (auto dve = ae1.isDotVarExp())
5172 *hasOverloads = dve.hasOverloads;
5173 return dve.var.isFuncDeclaration()
    [all...]
opover.d 862 auto dve = ae.e1.isDotVarExp();
863 if (auto ad = dve.var.isMember2())
869 if (dve.var == ad.aliasthis.sym)
optimize.d 482 if (auto dve = e.isDotVarExp())
484 auto v = dve.var.isVarDeclaration();
488 if (getVarAndOffset(dve.e1, var, eint, offset))
dinterpret.d 3282 else if (auto dve = e.isDotVarExp())
3283 e = dve.e1;
3743 if (auto dve = e1x.isDotVarExp())
3745 auto ex = dve.e1;
3749 auto v = dve.var.isVarDeclaration();
3799 else if (auto dve = e1.isDotVarExp())
3804 auto ex = dve.e1;
4743 if (auto dve = ecall.isDotVarExp())
4746 pthis = dve.e1;
4747 fd = dve.var.isFuncDeclaration()
    [all...]
typesem.d 4334 auto dve = new DotVarExp(e.loc, e, mt.sym.vthis);
4335 dve.type = cdp.type.addMod(e.type.mod);
4336 return dve;
4367 auto dve = new DotVarExp(e.loc, e, mt.sym.vthis);
4368 dve.type = mt.sym.vthis.type.addMod(e.type.mod);
4369 return dve;
dtoh.d 2354 if (auto dve = exp.isDotVarExp())
2355 source = dve.var.type;
dcast.d 901 if (auto dve = e.e1.isDotVarExp())
905 Type targ = dve.e1.type;
  /src/external/gpl3/gcc.old/dist/gcc/d/
toir.cc 994 if (DotVarExp *dve = (s->exp->isCallExp ()
998 if (dve->var->isCtorDeclaration ())
1000 if (CommaExp *ce = dve->e1->isCommaExp ())
1020 sle = dve->e1->isStructLiteralExp ();
expr.cc 1657 DotVarExp *dve = e1b->isDotVarExp (); local
1660 if (dve->e1->op == EXP::structLiteral)
1662 StructLiteralExp *sle = dve->e1->isStructLiteralExp ();
1666 FuncDeclaration *fd = dve->var->isFuncDeclaration ();
1678 tree thisexp = build_expr (dve->e1);

Completed in 35 milliseconds