Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dattrib.c417 if (stc & (STCauto | STCscope | STCstatic | STCextern | STCmanifest)) in newScope()
418 scstc &= ~(STCauto | STCscope | STCstatic | STCextern | STCmanifest); in newScope()
419 if (stc & (STCauto | STCscope | STCstatic | STCtls | STCmanifest | STCgshared)) in newScope()
420 scstc &= ~(STCauto | STCscope | STCstatic | STCtls | STCmanifest | STCgshared); in newScope()
766 sc->stc &= ~(STCauto | STCscope | STCstatic | STCtls | STCgshared); in semantic()
H A Ddeclaration.h46 #define STCauto 0x100LL macro
95 const StorageClass STCStorageClass = (STCauto | STCscope | STCstatic | STCextern | STCconst | STCfi…
147 bool isAuto() { return (storage_class & STCauto) != 0; } in isAuto()
H A Ddeclaration.c926 storage_class &= ~STCauto; in semantic()
1009 if ((storage_class & STCauto) && !inferred) in semantic()
2169 if (storage_class & (STCauto | STCscope) && !(storage_class & STCparameter)) in callScopeDtor()
H A Dhdrgen.c339 stc = STCauto; in visit()
1923 if (!tf->next || f->storage_class & STCauto) in visit()
3101 if (p->storageClass & STCauto) in visit()
3275 { STCauto, TOKauto, NULL }, in stcToChars()
H A Dfunc.c720 if ((storage_class & STCauto) && !f->isref && !inferRetType) in semantic()
1465 sc2->stc &= ~(STCauto | STCscope | STCstatic | STCextern | STCabstract | in semantic3()
1710 bool inferRef = (f->isref && (storage_class & STCauto)); in semantic3()
1761 if (storage_class & STCauto) in semantic3()
1762 storage_class &= ~STCauto; in semantic3()
H A Dparse.c543 case TOKauto: stc = STCauto; goto Lstc; in parseDeclDefs()
2026 case TOKauto: stc = STCauto; goto L2; in parseParameters()
3642 case TOKauto: stc = STCauto; goto L1; in parseStorageClasses()
5294 stc = STCauto; in parseStatement()
H A Ddclass.c380 if (storage_class & STCauto) in semantic()
H A Dtraits.c1083 if (stc & STCauto) in semanticTraits()
H A Ddtemplate.c1399 ((fparam->storageClass & STCauto) && !farg->isLvalue()))) in deduceFunctionTemplateMatch()
1579 (!(fparam->storageClass & STCauto) || farg->isLvalue())) in deduceFunctionTemplateMatch()
1666 if (m > MATCHnomatch && (fparam->storageClass & (STCref | STCauto)) == STCref) in deduceFunctionTemplateMatch()
7271 if (Parameter::getNth(tf->parameters, i)->storageClass & STCauto) in needsTypeInference()
H A Dmtype.c5558 if (fparam->storageClass & (STCauto | STCalias | STCstatic)) in semantic()
5729 …tBuffer buf1; stcToBuffer(&buf1, stc1 | ((stc1 & STCref) ? (fparam->storageClass & STCauto) : 0)); in semantic()
5756 if (fparam->storageClass & STCauto) in semantic()
5765 fparam->storageClass &= ~STCauto; // Bugzilla 14656 in semantic()
H A Dstatementsem.c2715 bool inferRef = (tf->isref && (fd->storage_class & STCauto)); in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h46 #define STCauto 0x100ULL /// `auto` macro
140 bool isAuto() const { return (storage_class & STCauto) != 0; } in isAuto()