Home
last modified time | relevance | path

Searched refs:isScopeQual (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmtype.d680 if (!t1.isref && (t1.isScopeQual || t2.isScopeQual))
682 StorageClass stc1 = t1.isScopeQual ? STC.scope_ : 0;
683 StorageClass stc2 = t2.isScopeQual ? STC.scope_ : 0;
687 if (!t1.isScopeQual)
693 if (!t2.isScopeQual)
4210 bool isScopeQual; /// 'this' is scope member
4259 this.isScopeQual = true;
4295 t.isScopeQual = isScopeQual; in syntaxCopy()
4456 (stc & STC.scope_ && !t.isScopeQual) || in addStorageClass()
4470 tf.isScopeQual = t.isScopeQual; in addStorageClass()
[all …]
H A Descape.d1761 if (ad.isClassDeclaration() || tf.isScopeQual) in visit()
1804 if (tf.isreturn && tf.isScopeQual) in visit()
1825 if (tf.isreturn && tf.isScopeQual) in visit()
2043 if (tf.isScopeQual) in visit()
H A Dmtype.h630 bool isScopeQual() const;
631 void isScopeQual(bool v);
H A Ddmangle.d376 else if (ta.isScopeQual && !ta.isscopeinferred) in mangleFuncType()
H A Ddsymbolsem.d3143 if (tf.isScopeQual) in funcDeclarationSemantic()
3185 tf.isScopeQual = false; in funcDeclarationSemantic()
3225 tfo.isScopeQual = f.isScopeQual; in funcDeclarationSemantic()
3261 if (f.isScopeQual && !funcdecl.isNested() && !ad) in funcDeclarationSemantic()
H A Dclone.d322 if (tdtor.isScopeQual) in buildOpAssign()
H A Dsemantic3.d1341 f.isScopeQual = true; in visit()
H A Dfunc.d562 if (tf.isScopeQual) in declareThis()
H A Dtypesem.d1200 tf.isScopeQual = true; in typeSemantic()
H A Dexpressionsem.d4691 if (!(exp.f.type.ty == Tfunction && (cast(TypeFunction)exp.f.type).isScopeQual)) in visit()