Searched refs:STCgshared (Results 1 – 12 of 12) sorted by relevance
972 if ((storage_class & STCgshared) && !isMember()) in semantic()1207 … StorageClass stc = storage_class & (STCstatic | STCextern | STCmanifest | STCtls | STCgshared); in semantic()1224 …ass & (STCstatic | STCextern | STCmanifest | STCtemplateparameter | STCtls | STCgshared | STCctfe)) in semantic()1286 … if (storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCfield) || in semantic()1334 …torage_class & (STCfield | STCout | STCref | STCstatic | STCmanifest | STCtls | STCgshared) || !fd) in semantic()1355 …!(storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCfield | STCparam… in semantic()1376 if (!_init && !sc->inunion && !(storage_class & (STCstatic | STCgshared | STCextern)) && fd && in semantic()1444 !(storage_class & (STCmanifest | STCstatic | STCtls | STCgshared | STCextern)) && in semantic()1611 if (sc->func && storage_class & (STCstatic | STCgshared)) in semantic()1819 STCtls | STCgshared | STCctfe))) in isThis()[all …]
419 if (stc & (STCauto | STCscope | STCstatic | STCtls | STCmanifest | STCgshared)) in newScope()420 scstc &= ~(STCauto | STCscope | STCstatic | STCtls | STCmanifest | STCgshared); in newScope()423 if (stc & (STCgshared | STCshared | STCtls)) in newScope()424 scstc &= ~(STCgshared | STCshared | STCtls); in newScope()766 sc->stc &= ~(STCauto | STCscope | STCstatic | STCtls | STCgshared); in semantic()
271 else if (vd->isStatic() || vd->storage_class & (STCextern | STCtls | STCgshared)) in Dsymbol_canThrow()
69 #define STCgshared 0x40000000LL macro99 STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable | STClocal);
552 if (!(d->storage_class & (STCextern | STCfield | STCgshared))) in mangle_variable()
373 …if (v->storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCctfe | STCt… in determineFields()
551 case TOKgshared: stc = STCgshared; goto Lstc; in parseDeclDefs()994 if (stc & (STCgshared | STCshared | STCtls)) in appendStorageClass()996 StorageClass u = storageClass & (STCgshared | STCshared | STCtls); in appendStorageClass()3651 case TOKgshared: stc = STCgshared; goto L1; in parseStorageClasses()
3297 { STCgshared, TOKgshared, NULL }, in stcToChars()
1467 STC_TYPECTOR | STCfinal | STCtls | STCgshared | STCref | STCreturn | in semantic3()
3253 tmp->storage_class |= STCtemp | STCgshared | STCstatic; in visit()
2567 if (v->storage_class & STCgshared) in checkPurity()
77 …#define STCgshared 0x400000000ULL /// accessible from multiple threads, but not type… macro