Home
last modified time | relevance | path

Searched refs:auto_ (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dastenums.d56 auto_ = 0x100, /// `auto` enumerator
124 …(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ | STC.abstract_ | ST…
132 …flowThruFunction = ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.abstract_ | STC.depr…
157 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ |
H A Dtokens.d185 auto_, enumerator
531 TOK.auto_,
608 … enum Ckwds = [ auto_, break_, case_, char_, const_, continue_, default_, do_, float64, else_, in with()
737 TOK.auto_: "auto",
H A Dattrib.d247 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.manifest)) in newScope()
248 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.manifest); in newScope()
249 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared)) in newScope()
250 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared); in newScope()
H A Dtokens.h194 auto_, enumerator
H A Dparse.d633 case TOK.auto_:
634 stc = STC.auto_;
2833 case TOK.auto_:
2834 stc = STC.auto_;
2852 case TOK.auto_: in version()
2853 storageClass = STC.auto_; in version()
4186 case TOK.auto_:
4187 stc = STC.auto_;
5494 case TOK.auto_: in parseAssignCondition()
5495 stc = STC.auto_; in parseAssignCondition()
[all …]
H A Dsemantic3.d600 bool inferRef = (f.isref && (funcdecl.storage_class & STC.auto_)); in visit()
651 if (funcdecl.storage_class & STC.auto_) in visit()
652 funcdecl.storage_class &= ~STC.auto_; in visit()
H A Dhdrgen.d259 stc = STC.auto_; in visit()
410 stc = STC.auto_; in visit()
1533 if (!tf.next || f.storage_class & STC.auto_) in visit()
2903 SCstring(STC.auto_, Token.toString(TOK.auto_)), in stcToString()
3184 if (p.storageClass & STC.auto_) in parameterToBuffer()
H A Dtypesem.d1275 const isAuto = fparam.storageClass & (STC.auto_ | STC.autoref); in typeSemantic()
1344 if (fparam.storageClass & (STC.auto_ | STC.alias_ | STC.static_)) in typeSemantic()
1384 …ffer buf1; stcToBuffer(&buf1, stc1 | ((stc1 & STC.ref_) ? (fparam.storageClass & STC.auto_) : 0)); in typeSemantic()
1584 if (eparam.storageClass & STC.auto_) in typeSemantic()
1592 … eparam.storageClass &= ~STC.auto_; // https://issues.dlang.org/show_bug.cgi?id=14656 in typeSemantic()
1600 eparam.storageClass &= ~STC.auto_; in typeSemantic()
H A Dcparse.d293 case TOK.auto_:
2174 case TOK.auto_: scwx = SCW.xauto; break; in cparseDeclarationSpecifiers()
3161 case TOK.auto_: in isGnuAttributeName()
3886 case TOK.auto_: in isDeclarationSpecifiers()
H A Ddeclaration.d476 return (storage_class & STC.auto_) != 0; in isAuto()
1479 if (storage_class & (STC.auto_ | STC.scope_) && !(storage_class & STC.parameter)) in callScopeDtor()
H A Ddsymbolsem.d431 dsym.storage_class &= ~STC.auto_; in visit()
522 if ((dsym.storage_class & STC.auto_) && !inferred) in visit()
1455 sc.stc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.gshared); in visit()
3256 if ((funcdecl.storage_class & STC.auto_) && !f.isref && !funcdecl.inferRetType) in funcDeclarationSemantic()
4750 if (cldec.storage_class & STC.auto_) in visit()
H A Ddtemplate.d1656 …ble() && (!(fparam.storageClass & STC.ref_) || (fparam.storageClass & STC.auto_) && !farg.isLvalue… in deduceFunctionTemplateMatch()
1849 … if ((fparam.storageClass & STC.ref_) && (!(fparam.storageClass & STC.auto_) || farg.isLvalue())) in deduceFunctionTemplateMatch()
1938 … if (m > MATCH.nomatch && (fparam.storageClass & (STC.ref_ | STC.auto_)) == STC.ref_) in deduceFunctionTemplateMatch()
7165 if (fparam.storageClass & STC.auto_)
H A Dtraits.d1474 if (stc & STC.auto_) in semanticTraits()
H A Dstatementsem.d2823 bool inferRef = (tf.isref && (fd.storage_class & STC.auto_)); in package()