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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 47 extern_ = 2, /// `extern`
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_ |
canthrow.d 249 else if (vd.isStatic() || vd.storage_class & (STC.extern_ | STC.gshared))
tokens.d 170 extern_,
533 TOK.extern_,
609 enum_, extern_, float32, for_, goto_, if_, inline, int32, int64, register,
739 TOK.extern_: "extern",
tokens.h 179 extern_, member in class:TOK
importc.d 187 if (dsym.storage_class & (STC.extern_ | STC.field | STC.in_ | STC.foreach_ | STC.parameter | STC.result))
cparse.d 290 case TOK.extern_:
2173 case TOK.extern_: scwx = SCW.xextern; break;
3153 case TOK.extern_:
3883 case TOK.extern_:
4516 stc = AST.STC.extern_;
4521 stc = AST.STC.extern_;
4528 stc = AST.STC.extern_;
4538 stc = AST.STC.extern_ | AST.STC.gshared;
4547 stc = AST.STC.extern_ | AST.STC.gshared;
4554 stc = AST.STC.extern_ | AST.STC.gshared
    [all...]
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);
objc.d 526 cd.objc.isExtern = (cd.storage_class & STC.extern_) > 0;
declaration.d 1174 assert(!(storage_class & (STC.static_ | STC.extern_ | STC.parameter)));
1250 if (!(storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.templateparameter | STC.gshared | STC.ctfe)))
1318 else if (storage_class & (STC.static_ | STC.extern_ | STC.gshared) ||
dsymbolsem.d 397 if (dsym.storage_class & STC.extern_ && dsym._init)
505 if (!ts.sym.members && !(dsym.storage_class & (STC.ref_ | STC.extern_)))
712 StorageClass stc = dsym.storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.gshared);
729 if (dsym.storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.templateparameter | STC.gshared | STC.ctfe))
790 if (dsym.storage_class & (STC.static_ | STC.extern_ | STC.gshared | STC.manifest | STC.field) || dsym.isDataseg())
815 if (!(dsym.storage_class & (STC.ctfe | STC.extern_ | STC.ref_ | STC.result)) &&
867 !(dsym.storage_class & (STC.static_ | STC.extern_ | STC.gshared | STC.manifest | STC.field | STC.parameter)) &&
893 !(dsym.storage_class & (STC.static_ | STC.gshared | STC.extern_)) &&
973 if (fd && !(dsym.storage_class & (STC.manifest | STC.static_ | STC.gshared | STC.extern_)) && !dsym._init.isVoidInitializer())
1166 if (dsym.isDataseg() && !(dsym.storage_class & STC.extern_))
    [all...]
dmangle.d 1345 (d.isVarDeclaration() && d.isDataseg() && d.storage_class & STC.extern_))))
parse.d 775 case TOK.extern_:
779 stc = STC.extern_;
4253 case TOK.extern_:
4257 stc = STC.extern_;
5775 case TOK.extern_:
cppmangle.d 996 if (!(d.storage_class & (STC.extern_ | STC.field | STC.gshared)))
dsymbol.d 2527 vd2.storage_class |= STC.extern_; // so toObjFile() won't emit it
hdrgen.d 2906 SCstring(STC.extern_, Token.toString(TOK.extern_)),
dtoh.d 970 if (vd.storage_class & (AST.STC.static_ | AST.STC.extern_ | AST.STC.gshared) ||

Completed in 45 milliseconds