Home
last modified time | relevance | path

Searched refs:structField (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dclone.d1238 auto structField = sd.fields[i]; in buildPostBlit() local
1239 if (structField.storage_class & STC.ref_) in buildPostBlit()
1241 if (structField.overlapped) in buildPostBlit()
1244 Type tv = structField.type.baseElemOf(); in buildPostBlit()
1342 tv = structField.type.toBasetype(); in buildPostBlit()
1348 ex = new DotVarExp(loc, ex, structField); in buildPostBlit()
1352 ex = new CastExp(loc, ex, structField.type.mutableOf().pointerTo()); in buildPostBlit()
1369 ex = new DotVarExp(loc, ex, structField); in buildPostBlit()
1396 fieldsToDestroy ~= structField; in buildPostBlit()
H A Ddeclaration.d301 auto structField = sd.fields[i]; variable
302 if (structField.overlapped)
304 Type tv = structField.type.baseElemOf();
312 … p.error(loc, "is not copyable because field `%s` is not copyable", structField.toChars());