Home | History | Annotate | Download | only in dmd

Lines Matching refs:dve

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);
1790 StorageClass stc = dve.var.storage_class & (STC.return_ | STC.scope_ | STC.ref_);
1796 dve.e1.accept(this);
1798 escapeByRef(dve.e1, er, live);
2029 DotVarExp dve = e.e1.isDotVarExp();
2032 if (dve.var.isCtorDeclaration())
2038 StorageClass stc = dve.var.storage_class & (STC.return_ | STC.scope_ | STC.ref_);
2050 dve.e1.accept(this);
2052 escapeByValue(dve.e1, er, live);
2055 if (FuncDeclaration fd = dve.var.isFuncDeclaration())