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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
mustuse.d 47 auto sd = sym.isStructDeclaration();
48 // isStructDeclaration returns non-null for both structs and unions
aggregate.h 195 StructDeclaration *isStructDeclaration() { return this; }
dscope.d 460 else if (sc.flags & SCOPE.Cfile && sc.scopesym.isStructDeclaration())
707 if (AggregateDeclaration ad = sc.scopesym.isStructDeclaration())
dsymbol.h 296 virtual StructDeclaration *isStructDeclaration() { return NULL; }
aggregate.d 662 else if (isStructDeclaration())
dstruct.d 444 override final inout(StructDeclaration) isStructDeclaration() inout @nogc nothrow pure @safe
escape.d 121 assert(ad.isStructDeclaration());
1763 if (ad.isStructDeclaration())
typesem.d 2048 if (scopesym.isStructDeclaration())
2146 mtype.tok == TOK.struct_ && s.isStructDeclaration())
2149 auto sd = s.isStructDeclaration();
2204 mtype.tok == TOK.struct_ && s.isStructDeclaration())
2209 mtype.resolved = s.isStructDeclaration().type;
dtoh.d 1073 if (auto sd = ad.aliassym.isStructDeclaration())
2093 if (!td.parameters || !td.onemember || (!td.onemember.isStructDeclaration && !td.onemember.isClassDeclaration && !td.onemember.isFuncDeclaration))
dsymbolsem.d 3173 if (ad.isStructDeclaration())
3182 if (sc.stc & STC.scope_ && ad && ad.isStructDeclaration() && !ad.type.hasPointers())
3388 if (StructDeclaration sd = parent.isStructDeclaration())
4015 auto sd = ad.isStructDeclaration();
4102 StructDeclaration ad = p.isStructDeclaration();
func.d 1655 auto sym = t.toDsymbol(null).isStructDeclaration();
1736 auto sym = tp.toDsymbol(null).isStructDeclaration();
declaration.d 297 auto sd = p.isStructDeclaration();
dsymbol.d 1357 inout(StructDeclaration) isStructDeclaration() inout { return null; }
opover.d 609 StructDeclaration sd = ad1.isStructDeclaration();
semantic3.d 1520 StructDeclaration sd = ad.isStructDeclaration();
constfold.d 1164 StructDeclaration sd = tb.toDsymbol(null).isStructDeclaration();
doc.d 887 else if (sds.isStructDeclaration())
dtemplate.d 2431 if (ad && ad.isStructDeclaration())
expression.d 1251 auto fieldSd = fieldSym.isStructDeclaration();
expressionsem.d 2836 StructDeclaration sd = s.isStructDeclaration();
  /src/external/gpl3/gcc.old/dist/gcc/d/
types.cc 639 gcc_assert ((sym->isStructDeclaration () && ad->isStructDeclaration ())
d-codegen.cc 2477 if ((adp->isClassDeclaration () || adp->isStructDeclaration ())
2604 StructDeclaration *sd = decl->isStructDeclaration ();
2617 if (outer->isStructDeclaration ())
decl.cc 1422 if (!ad->isStructDeclaration ())
2356 StructDeclaration *sd = decl->isStructDeclaration ();
expr.cc 2192 if (StructDeclaration *sd = sdecl->dsym->isStructDeclaration ())
2224 tree ptr = (sd->dsym->isStructDeclaration ()

Completed in 58 milliseconds