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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 56 auto_ = 0x100, /// `auto`
124 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ | STC.abstract_ | STC.synchronized_ |
132 flowThruFunction = ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.abstract_ | STC.deprecated_ | STC.override_ |
157 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ |
tokens.d 185 auto_,
531 TOK.auto_,
608 enum Ckwds = [ auto_, break_, case_, char_, const_, continue_, default_, do_, float64, else_,
737 TOK.auto_: "auto",
tokens.h 194 auto_, member in class:TOK
attrib.d 247 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.manifest))
248 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.manifest);
249 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared))
250 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared);
parse.d 633 case TOK.auto_:
634 stc = STC.auto_;
2833 case TOK.auto_:
2834 stc = STC.auto_;
2852 case TOK.auto_:
2853 storageClass = STC.auto_;
4186 case TOK.auto_:
4187 stc = STC.auto_;
5494 case TOK.auto_:
5495 stc = STC.auto_;
    [all...]
semantic3.d 600 bool inferRef = (f.isref && (funcdecl.storage_class & STC.auto_));
651 if (funcdecl.storage_class & STC.auto_)
652 funcdecl.storage_class &= ~STC.auto_;
hdrgen.d 259 stc = STC.auto_;
410 stc = STC.auto_;
1533 if (!tf.next || f.storage_class & STC.auto_)
2903 SCstring(STC.auto_, Token.toString(TOK.auto_)),
3184 if (p.storageClass & STC.auto_)
typesem.d 1275 const isAuto = fparam.storageClass & (STC.auto_ | STC.autoref);
1344 if (fparam.storageClass & (STC.auto_ | STC.alias_ | STC.static_))
1384 OutBuffer buf1; stcToBuffer(&buf1, stc1 | ((stc1 & STC.ref_) ? (fparam.storageClass & STC.auto_) : 0));
1584 if (eparam.storageClass & STC.auto_)
1592 eparam.storageClass &= ~STC.auto_; // https://issues.dlang.org/show_bug.cgi?id=14656
1600 eparam.storageClass &= ~STC.auto_;
cparse.d 293 case TOK.auto_:
2174 case TOK.auto_: scwx = SCW.xauto; break;
3161 case TOK.auto_:
3886 case TOK.auto_:
declaration.d 476 return (storage_class & STC.auto_) != 0;
1479 if (storage_class & (STC.auto_ | STC.scope_) && !(storage_class & STC.parameter))
dsymbolsem.d 431 dsym.storage_class &= ~STC.auto_;
522 if ((dsym.storage_class & STC.auto_) && !inferred)
1455 sc.stc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.gshared);
3256 if ((funcdecl.storage_class & STC.auto_) && !f.isref && !funcdecl.inferRetType)
4750 if (cldec.storage_class & STC.auto_)
dtemplate.d 1656 if ((tt.ty == Tarray || tt.ty == Tpointer) && !tt.isMutable() && (!(fparam.storageClass & STC.ref_) || (fparam.storageClass & STC.auto_) && !farg.isLvalue()))
1849 if ((fparam.storageClass & STC.ref_) && (!(fparam.storageClass & STC.auto_) || farg.isLvalue()))
1938 if (m > MATCH.nomatch && (fparam.storageClass & (STC.ref_ | STC.auto_)) == STC.ref_)
7165 if (fparam.storageClass & STC.auto_)
traits.d 1474 if (stc & STC.auto_)
statementsem.d 2823 bool inferRef = (tf.isref && (fd.storage_class & STC.auto_));

Completed in 71 milliseconds