Home
last modified time | relevance | path

Searched refs:static_ (Results 1 – 25 of 34) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dastenums.d46 static_ = 1, /// `static` 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 Ddeclaration.d420 return (storage_class & STC.static_) != 0; in isStatic()
1174 assert(!(storage_class & (STC.static_ | STC.extern_ | STC.parameter))); in setFieldOffset()
1250 …if (!(storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.templateparameter | STC.gsha… in inout()
1279 …if (visibility.kind == Visibility.Kind.export_ && !_init && (storage_class & STC.static_ || parent… in isImportedSymbol()
1299 …storage_class & (STC.static_ | STC.const_), parent.isModule(), parent.isTemplateInstance(), parent… in isDataseg()
1313 if (!parent && !(storage_class & STC.static_)) in isDataseg()
1318 else if (storage_class & (STC.static_ | STC.extern_ | STC.gshared) || in isDataseg()
1941 storage_class = STC.static_ | STC.gshared; in this()
H A Dtokens.d175 static_, enumerator
519 TOK.static_,
610 … restrict, return_, int16, signed, sizeof_, static_, struct_, switch_, typedef_, in with()
725 TOK.static_: "static",
H A Dparse.d540 case TOK.static_:
584 stc = STC.static_;
606 if (next == TOK.static_)
2338 if (stc & STC.static_)
2369 if (stc & STC.static_)
2372 else if (StorageClass ss = stc & (STC.shared_ | STC.static_)) // this()
2374 if (ss == STC.static_)
2376 else if (ss == (STC.shared_ | STC.static_))
2422 if (StorageClass ss = stc & (STC.shared_ | STC.static_))
2424 if (ss == STC.static_)
[all …]
H A Ddsymbolsem.d413 bool needctfe = (dsym.storage_class & (STC.manifest | STC.static_)) != 0; in visit()
712 … StorageClass stc = dsym.storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.gshared); in visit()
729 …if (dsym.storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.templateparameter | STC.g… in visit()
790 …if (dsym.storage_class & (STC.static_ | STC.extern_ | STC.gshared | STC.manifest | STC.field) || d… in visit()
837 …if (dsym.storage_class & (STC.field | STC.out_ | STC.ref_ | STC.static_ | STC.manifest | STC.gshar… in visit()
867 …!(dsym.storage_class & (STC.static_ | STC.extern_ | STC.gshared | STC.manifest | STC.field | STC.p… in visit()
893 !(dsym.storage_class & (STC.static_ | STC.gshared | STC.extern_)) && in visit()
973 …if (fd && !(dsym.storage_class & (STC.manifest | STC.static_ | STC.gshared | STC.extern_)) && !dsy… in visit()
1158 if (sc.func && dsym.storage_class & (STC.static_ | STC.gshared)) in visit()
1373 stcToBuffer(ob, STC.static_); in visit()
[all …]
H A Ddclass.d874 if (fd.storage_class & STC.static_) in isAbstract()
915 if (fd && !(fd.storage_class & STC.static_) && !fd.isUnitTestDeclaration()) in isAbstract()
984 … = new VarDeclaration(loc, vtype, Identifier.idPool("__vtbl"), null, STC.immutable_ | STC.static_); in vtblSymbol()
H A Daggregate.d636 if (storage_class & STC.static_) in makeNested()
713 if (storage_class & STC.static_) in makeNested2()
H A Ddsymbol.d1949 v.storage_class |= STC.temp | STC.static_ | STC.const_; in dollarFromTypeTuple()
1963 v.storage_class |= STC.temp | STC.static_ | STC.const_;
2026 v.storage_class |= STC.temp | STC.static_ | STC.const_;
2516 if ((vd.storage_class ^ vd2.storage_class) & STC.static_) in handleSymbolRedeclarations()
2561 if ( fd.storage_class & STC.static_ && in handleSymbolRedeclarations()
2562 !(fd2.storage_class & STC.static_)) in handleSymbolRedeclarations()
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.h184 static_, enumerator
H A Ddelegatize.d299 if (ad.storage_class & STC.static_) in ensureStaticLinkTo()
H A Dfunc.d1778 return ((f.storage_class & STC.static_) == 0) && in isNested()
1796 auto ad = (storage_class & STC.static_) ? .objc.isThis(this) : isMemberLocal(); in inout()
2664 fd = new FuncDeclaration(Loc.initial, Loc.initial, id, STC.static_, tf);
3977 … super(loc, endloc, Identifier.generateIdWithLoc("_staticCtor", loc), STC.static_ | stc, null); in this()
3982 super(loc, endloc, Identifier.generateIdWithLoc(name, loc), STC.static_ | stc, null); in this()
4065 … super(loc, endloc, Identifier.generateIdWithLoc("_staticDtor", loc), STC.static_ | stc, null); in this()
4070 super(loc, endloc, Identifier.generateIdWithLoc(name, loc), STC.static_ | stc, null); in this()
4260 super(loc, Loc.initial, Id.classNew, STC.static_ | stc, null); in this()
H A Dimportc.d185 if (!(dsym.storage_class & (STC.static_ | STC.gshared))) in addDefaultCInitializer()
H A Ddimport.d229 if (sc.stc & STC.static_) in importAll()
H A Dcparse.d291 case TOK.static_:
2172 case TOK.static_: scwx = SCW.xstatic; break; in cparseDeclarationSpecifiers()
2604 if (token.value == TOK.static_)
3149 case TOK.static_: in isGnuAttributeName()
3884 case TOK.static_: in isDeclarationSpecifiers()
4523 stc = AST.STC.static_; in specifiersToSTC()
4530 stc = AST.STC.static_; in specifiersToSTC()
4540 stc = AST.STC.gshared | AST.STC.static_; in specifiersToSTC()
H A Doptimize.d238 lengthVar.storage_class |= STC.static_ | STC.const_; in setLengthVarIfKnown()
259 lengthVar.storage_class |= STC.static_ | STC.const_; in setLengthVarIfKnown()
1082 … if (v && (v.storage_class & STC.static_) && (v.storage_class & STC.immutable_) && v._init) in Expression_optimize()
H A Dclone.d822 auto fop = new FuncDeclaration(declLoc, Loc.initial, id, STC.static_, tf); in buildXtoHash()
1091 sc2.stc &= ~STC.static_; // not a static destructor in buildWindowsCppDtor()
1140 sc2.stc &= ~STC.static_; // not a static destructor in buildExternDDtor()
H A Dobjc.d874 objc.metaclass.storage_class |= STC.static_; in with()
H A Dhdrgen.d1725 if (stcToBuffer(buf, d.storage_class & ~STC.static_)) in visit()
1741 if (stcToBuffer(buf, d.storage_class & ~STC.static_)) in visit()
1800 if (stcToBuffer(buf, d.storage_class & ~STC.static_)) in visit()
2905 SCstring(STC.static_, Token.toString(TOK.static_)), in stcToString()
H A Dcond.d254 sdecl.storage_class |= STC.static_; in private()
H A Dsemantic2.d422 if (tf1.mod != tf2.mod || ((f1.storage_class ^ f2.storage_class) & STC.static_)) in visit()
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Doptions.h1592 { return static_; } in is_static()
1871 { static_ = value; } in set_static()
1914 bool static_; variable
H A Doptions.cc1015 static_(false), in General_options()
/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Doptions.h1587 { return static_; } in is_static()
1866 { static_ = value; } in set_static()
1909 bool static_; variable
H A Doptions.cc1015 static_(false), in General_options()

12