HomeSort by: relevance | last modified time | path
    Searched refs:sdecl (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/
d-builtins.cc 234 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->type->merge2 ()
    [all...]
expr.cc 2174 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 ())
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
cond.d 253 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;
attrib.d 304 if (auto sdecl = s.isStorageClassDeclaration()) // TODO: why is this not enough to deal with the nested case?
306 sdecl.stc |= stc & STC.local;
func.d 2436 auto sdecl = new ExpStatement(rloc, decl);
2437 s.push(new ScopeStatement(rloc, new CompoundStatement(rloc, sdecl, r.ensure), rloc));
  /src/external/gpl3/gcc/dist/gcc/
gimplify.cc 11434 tree sdecl = addr_tokens[last_access]->expr;
11435 tree sdecl_ptr = ref_to_ptr ? build_fold_indirect_ref (sdecl)
11436 : sdecl;
11441 ? sdecl_ptr : sdecl;
11442 sdecl = sdecl_ptr;
11447 ptrdiff_type_node, sdecl);
11431 tree sdecl = addr_tokens[last_access]->expr; local

Completed in 30 milliseconds