Home
last modified time | relevance | path

Searched refs:assocArrayLiteral (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dctfeexpr.d236 case EXP.assocArrayLiteral: in needToCopyLiteral()
556 case EXP.assocArrayLiteral: in resolveArrayLength()
1022 ….op == EXP.arrayLiteral || e.op == EXP.structLiteral || e.op == EXP.assocArrayLiteral || e.op == E… in isCtfeComparable()
1327 if (e1.op == EXP.assocArrayLiteral && e2.op == EXP.assocArrayLiteral)
1361 else if (e1.op == EXP.assocArrayLiteral && e2.op == EXP.null_)
1365 else if (e1.op == EXP.null_ && e2.op == EXP.assocArrayLiteral)
1855 case EXP.assocArrayLiteral: in isCtfeValueValid()
1944 … return eagg.op == EXP.string_ || eagg.op == EXP.arrayLiteral || eagg.op == EXP.assocArrayLiteral; in isCtfeReferenceValid()
1986 else if (e.op == EXP.assocArrayLiteral)
H A Dtokens.h330 assocArrayLiteral, enumerator
H A Doptimize.d1088 ….op == EXP.string_ || e.e1.op == EXP.arrayLiteral || e.e1.op == EXP.assocArrayLiteral || e.e1.type… in Expression_optimize()
1310 case EXP.assocArrayLiteral: visitAssocArrayLiteral(ex.isAssocArrayLiteralExp()); break; in Expression_optimize()
H A Dsemantic2.d289 if (e.op == EXP.assocArrayLiteral) in visit()
H A Ddinterpret.d3537 assert(ie.e1.op == EXP.assocArrayLiteral);
5387 assert(e1.op == EXP.assocArrayLiteral); in visit()
5642 if (e2.op != EXP.assocArrayLiteral) in visit()
6753 case EXP.assocArrayLiteral: in copyRegionExp()
6858 if (earg.op != EXP.assocArrayLiteral && earg.type.toBasetype().ty != Taarray) in interpret_keys()
6881 if (earg.op != EXP.assocArrayLiteral && earg.type.toBasetype().ty != Taarray) in interpret_values()
6905 if (earg.op != EXP.assocArrayLiteral && earg.type.toBasetype().ty != Taarray) in interpret_dup()
6926 if (aa.op != EXP.assocArrayLiteral) in interpret_aaApply()
H A Dtokens.d320 assocArrayLiteral,
H A Ddcast.d1461 case EXP.assocArrayLiteral: return visitAssocArrayLiteral(e.isAssocArrayLiteralExp()); in implicitConvTo()
2646 case EXP.assocArrayLiteral: return visitAssocArrayLiteral(e.isAssocArrayLiteralExp());
2731 case EXP.assocArrayLiteral: return visitAar(e.isAssocArrayLiteralExp());
H A Dhdrgen.d2566 case EXP.assocArrayLiteral: return visitAssocArrayLiteral(e.isAssocArrayLiteralExp()); in expressionPrettyPrint()
4024 EXP.assocArrayLiteral : "assocarrayliteral", in EXPtoString()
H A Dexpression.d1640 …inout(AssocArrayLiteralExp) isAssocArrayLiteralExp() { return op == EXP.assocArrayLiteral ? cast(t… in isAssocArrayLiteralExp()
3101 super(loc, EXP.assocArrayLiteral, __traits(classInstanceSize, AssocArrayLiteralExp)); in this()
5849 if (e1.op == EXP.assocArrayLiteral) in isLvalue()
H A Ddtemplate.d462 case EXP.assocArrayLiteral: in expressionHash()
7265 …& ea.op != EXP.string_ && ea.op != EXP.arrayLiteral && ea.op != EXP.assocArrayLiteral && ea.op != … in hasNestedArgs()
H A Dparse.d9382 EXP.assocArrayLiteral : PREC.primary,