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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
dsymbol.h 154 IgnoreSymbolVisibility = 0x80, // also find private and package protected symbols
dscope.d 60 ignoresymbolvisibility = 0x0200, /// ignore symbol visibility
76 SCOPE.noaccesscheck | SCOPE.ignoresymbolvisibility |
509 if (this.flags & SCOPE.ignoresymbolvisibility)
510 flags |= IgnoreSymbolVisibility;
dclass.d 519 else if (!(flags & IgnoreSymbolVisibility) && !(s.visible().kind == Visibility.Kind.protected_) && !symbolIsVisible(this, s))
dsymbol.d 218 IgnoreSymbolVisibility = 0x80, // also find private and package protected symbols
1474 if (!s2 || !(flags & IgnoreSymbolVisibility) && !symbolIsVisible(this, s2))
typesem.d 271 if (!(sc.flags & SCOPE.ignoresymbolvisibility) && !symbolIsVisible(sc, sm))
3960 immutable flags = sc.flags & SCOPE.ignoresymbolvisibility ? IgnoreSymbolVisibility : 0;
3967 if (!(sc.flags & SCOPE.ignoresymbolvisibility) && !symbolIsVisible(sc, s))
4221 int flags = sc.flags & SCOPE.ignoresymbolvisibility ? IgnoreSymbolVisibility : 0;
4374 if (!(sc.flags & SCOPE.ignoresymbolvisibility) && !symbolIsVisible(sc, s))
expressionsem.d 434 if (sc.flags & SCOPE.ignoresymbolvisibility)
435 flags |= IgnoreSymbolVisibility;
12415 if (sc.flags & SCOPE.ignoresymbolvisibility)
12416 flags |= IgnoreSymbolVisibility;
12421 if (s && !(sc.flags & SCOPE.ignoresymbolvisibility) && !symbolIsVisible(sc._module, s))

Completed in 100 milliseconds