Home
last modified time | relevance | path

Searched refs:isScopeExp (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpression.h149 ScopeExp* isScopeExp();
H A Dinitsem.d1043 if (auto se = init.exp.isScopeExp()) in inferType()
H A Dclone.d653 s = e.isScopeExp().sds; in buildXopCmp()
H A Dtypesem.d1843 mtype.sym = e.isScopeExp().sds; in typeSemantic()
2804 else if (auto se = exp.isScopeExp()) in resolveExp()
H A Dexpressionsem.d781 else if (auto se = e1.isScopeExp()) in resolvePropertiesOnly()
1216 else if (auto se = e1.isScopeExp())
4256 if (ScopeExp se = exp.e1.isScopeExp()) in visit()
12280 case EXP.scope_: return dotMangleof(exp.loc, sc, exp.e1.isScopeExp().sds); in semanticX()
12406 if (auto ie = eright.isScopeExp()) // also used for template alias's in semanticY()
H A Ddtemplate.d199 else if (auto te = ea.isScopeExp()) in getDsymbol()
6750 if (auto se = (cast(DotExp)ea).e2.isScopeExp()) in semanticTiargs()
H A Dhdrgen.d2570 case EXP.scope_: return visitScope(e.isScopeExp()); in expressionPrettyPrint()
H A Ddsymbolsem.d1081 … if (ei && (ei.exp.op != EXP.scope_ ? true : !ei.exp.isScopeExp().sds.isPackage())) in visit()
H A Dexpression.d1644 … inout(ScopeExp) isScopeExp() { return op == EXP.scope_ ? cast(typeof(return))this : null; } in isScopeExp() function