Home
last modified time | relevance | path

Searched refs:STCdisable (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dclone.c36 StorageClass s2 = (f->storage_class & STCdisable); in mergeFuncAttrs()
73 if (so & STCdisable) in mergeFuncAttrs()
74 stc |= STCdisable; in mergeFuncAttrs()
255 if (stc & STCdisable) in buildOpAssign()
338 fop->storage_class |= STCdisable; in buildOpAssign()
793 stc |= sd->postblits[i]->storage_class & STCdisable; in buildPostBlit()
797 for (size_t i = 0; i < sd->fields.dim && !(stc & STCdisable); i++) in buildPostBlit()
815 if (stc & STCdisable) in buildPostBlit()
921 if (a->dim || (stc & STCdisable)) in buildPostBlit()
927 dd->fbody = (stc & STCdisable) ? NULL : new CompoundStatement(loc, a); in buildPostBlit()
[all …]
H A Ddeclaration.h79 #define STCdisable 0x2000000000LL // for functions that are not callable macro
99 STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable | STClocal);
H A Dfunc.c492 storage_class |= sc->func->storage_class & STCdisable; in semantic()
533 sc->stc |= storage_class & (STCdisable | STCdeprecated); // forward to function type in semantic()
1149 if (storage_class & STCdisable) in semantic()
1391 storage_class |= STCdisable; in semantic3()
1833 else if (fd->storage_class & STCdisable) in semantic3()
4875 if (fbody || !(storage_class & STCdisable) || dim) in semantic()
4879 storage_class |= STCdisable; in semantic()
4890 if (storage_class & STCdisable) in semantic()
H A Ddeclaration.c431 if (storage_class & (STCref | STCnothrow | STCnogc | STCpure | STCdisable)) in aliasSemantic()
436 … sc2->stc |= storage_class & (STCref | STCnothrow | STCnogc | STCpure | STCshared | STCdisable); in aliasSemantic()
1432 sc->stc &= ~(STC_TYPECTOR | STCpure | STCnothrow | STCnogc | STCref | STCdisable); in semantic()
H A Ddsymbol.c800 if (d && d->storage_class & STCdisable) in checkDeprecated()
802 if (!(sc->func && sc->func->storage_class & STCdisable)) in checkDeprecated()
H A Dparse.c132 if (stc == STCproperty || stc == STCnogc || stc == STCdisable || in parseModule()
1039 stc = STCdisable; in parseAttribute()
3585 *pdisable = stc & STCdisable ? 1 : 0; in parseDeclarator()
4053 … new FuncDeclaration(loc, Loc(), ident, storage_class | (disable ? STCdisable : 0), t); in parseDeclarations()
H A Dhdrgen.c2055 if (d->storage_class & STCdisable) in visit()
3303 { STCdisable, TOKat, "@disable" }, in stcToChars()
H A Ddclass.c834 if (!(f->storage_class & STCdisable)) in semantic()
H A Dexpression.c2662 if (sd->postblit->storage_class & STCdisable) in checkPostblit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dtypeinfo.cc922 if (cd->defaultCtor && !(cd->defaultCtor->storage_class & STCdisable)) in visit()
1103 if (sd->postblit && !(sd->postblit->storage_class & STCdisable)) in visit()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dtypeinfo.cc912 if (cd->defaultCtor && !(cd->defaultCtor->storage_class & STCdisable)) in visit()
1097 if (sd->postblit && !(sd->postblit->storage_class & STCdisable)) in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h86 #define STCdisable 0x20000000000ULL /// for functions that are not callable macro