Searched refs:sdecl (Results 1 - 8 of 8) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-builtins.cc230 StructDeclaration *sdecl = StructDeclaration::create (Loc (), ident, local
232 sdecl->parent = stubmod;
233 sdecl->structsize = int_size_in_bytes (type);
234 sdecl->alignsize = TYPE_ALIGN_UNIT (type);
235 sdecl->alignment = STRUCTALIGN_DEFAULT;
236 sdecl->sizeok = SIZEOKdone;
237 sdecl->type = (TypeStruct::create (sdecl))->addMod (mod);
238 sdecl->type->ctype = type;
239 sdecl
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/
H A Dd-builtins.cc234 StructDeclaration *sdecl = StructDeclaration::create (Loc (), ident, local
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
[all...]
H A Dexpr.cc2174 SymbolDeclaration *sdecl = e->var->isSymbolDeclaration (); local
2190 else if (sdecl && sdecl->dsym)
2192 if (StructDeclaration *sd = sdecl->dsym->isStructDeclaration ())
2194 else if (ClassDeclaration *cd = sdecl->dsym->isClassDeclaration ())
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dcond.c197 StructDeclaration *sdecl = new StructDeclaration(loc, sid, false); local
198 sdecl->storage_class |= STCstatic;
199 sdecl->members = new Dsymbols();
202 sdecl->members->push(new VarDeclaration(loc, ty, fid, NULL));
203 TypeStruct *r = (TypeStruct *)sdecl->type;
H A Dattrib.c398 if (StorageClassDeclaration *sdecl = s->isStorageClassDeclaration())
400 sdecl->stc |= stc & STClocal;
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dcond.d253 auto sdecl = new StructDeclaration(loc, sid, false);
254 sdecl.storage_class |= STC.static_;
255 sdecl.members = new Dsymbols();
258 sdecl.members.push(new VarDeclaration(loc, ty, fid, null, 0));
259 auto r = cast(TypeStruct)sdecl.type;
H A Dattrib.d304 if (auto sdecl = s.isStorageClassDeclaration()) // TODO: why is this not enough to deal with the nested case?
306 sdecl.stc |= stc & STC.local;
H A Dfunc.d2436 auto sdecl = new ExpStatement(rloc, decl);
2437 s.push(new ScopeStatement(rloc, new CompoundStatement(rloc, sdecl, r.ensure), rloc));

Completed in 121 milliseconds