Home | History | Annotate | Download | only in d

Lines Matching refs:sdecl

234       StructDeclaration *sdecl = StructDeclaration::create (Loc (), ident,
236 sdecl->parent = stubmod;
237 sdecl->structsize = int_size_in_bytes (type);
238 sdecl->alignsize = TYPE_ALIGN_UNIT (type);
239 sdecl->alignment.setDefault ();
240 sdecl->sizeok = Sizeok::done;
241 sdecl->type = (TypeStruct::create (sdecl))->addMod (mod);
242 sdecl->type->ctype = type;
243 sdecl->type->merge2 ();
248 sdecl->members = d_gc_malloc<Dsymbols> ();
276 vd->parent = sdecl;
280 sdecl->members->push (vd);
281 sdecl->fields.push (vd);
284 dtype = sdecl->type;
285 builtin_converted_decls.safe_push (builtin_data (dtype, type, sdecl));