Searched refs:dotVariable (Results 1 – 15 of 15) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | safe.d | 49 if (e.op != EXP.dotVariable) in checkUnsafeAccess()
|
H A D | tokens.h | 311 dotVariable, enumerator
|
H A D | ctfeexpr.d | 247 case EXP.dotVariable: in needToCopyLiteral() 360 …mbolOffset || e.op == EXP.null_ || e.op == EXP.variable || e.op == EXP.dotVariable || e.op == EXP.… in copyLiteral() 1902 e1.op == EXP.dotVariable && isCtfeReferenceValid(e1) || in isCtfeValueValid() 1947 case EXP.dotVariable: in isCtfeReferenceValid()
|
H A D | expression.d | 633 case EXP.dotVariable: in expToVariable() 1663 …inout(DotVarExp) isDotVarExp() { return op == EXP.dotVariable ? cast(typeof(return))this : null… in isDotVarExp() 4802 super(loc, EXP.dotVariable, __traits(classInstanceSize, DotVarExp), e); 4928 case EXP.dotVariable: in findTempDecl() 7059 case EXP.dotVariable: 7094 if (!dve.e1 || dve.e1.op != EXP.dotVariable) 7212 EXP.dotVariable, EXP.dotTemplateInstance, EXP.delegate_, EXP.dotType, EXP.call,
|
H A D | escape.d | 1734 if (e.e1.op == EXP.dotVariable && t1.ty == Tfunction) in visit() 2027 if (e.e1.op == EXP.dotVariable && t1.ty == Tfunction) in visit()
|
H A D | tokens.d | 301 dotVariable,
|
H A D | expressionsem.d | 4640 … if (exp.e1.op == EXP.dotVariable && t1.ty == Tfunction || exp.e1.op == EXP.dotTemplateDeclaration) in visit() 4648 if (exp.e1.op == EXP.dotVariable) in visit() 4718 if (exp.e1.op == EXP.dotVariable) in visit() 4897 … else if (exp.e1.op == EXP.dotVariable && (cast(DotVarExp)exp.e1).var.isOverDeclaration()) in visit() 6976 if (exp.e1.op == EXP.dotVariable) in visit() 9089 DotVarExp dve = (ce && ce.e1.op == EXP.dotVariable) in visit() 9093 dve.e1.op != EXP.dotVariable && in visit() 12282 case EXP.dotVariable: return dotMangleof(exp.loc, sc, exp.e1.isDotVarExp().var); in semanticX() 12985 case EXP.dotVariable: return visitDotVar(e.isDotVarExp()); in check()
|
H A D | optimize.d | 1336 case EXP.dotVariable: visitDotVar(ex.isDotVarExp()); break; in Expression_optimize()
|
H A D | typesem.d | 1823 case EXP.dotVariable: in typeSemantic() 3146 … : mt.exp.op == EXP.dotVariable ? mt.exp.isDotVarExp().var.isFuncDeclaration() : null) in visitTypeof() 3377 if (ex.op == EXP.dotVariable) in dotExp()
|
H A D | opover.d | 859 if (ae.e1.op != EXP.dotVariable) in visitBin()
|
H A D | hdrgen.d | 2591 case EXP.dotVariable: return visitDotVar(e.isDotVarExp()); in expressionPrettyPrint() 4013 EXP.dotVariable : "dotvar", in EXPtoString()
|
H A D | dtemplate.d | 6731 if (ea.op == EXP.dotVariable && !(flags & 1)) in semanticTiargs() 7586 if (e.op != EXP.dotVariable) in definitelyValueParameter() 7600 while (e.op == EXP.dotVariable) in definitelyValueParameter()
|
H A D | dinterpret.d | 2237 ev.op == EXP.dotVariable) in visit() 5535 … if ((e1.op == EXP.variable || e1.op == EXP.dotVariable) && e1.type.toBasetype().ty == Tsarray) in visit() 6778 case EXP.dotVariable: in copyRegionExp()
|
H A D | parse.d | 9371 EXP.dotVariable : PREC.primary,
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | expr.cc | 1655 if (e1b->op == EXP::dotVariable && tb->ty != TY::Tdelegate) in visit() 1732 if (e1b->op == EXP::dotVariable) in visit()
|