9 references to IsSymbolAccessibleCore
Microsoft.CodeAnalysis.Workspaces (9)
ISymbolExtensions_Accessibility.cs (9)
43return IsSymbolAccessibleCore(symbol, within, throughType, out _);
69return IsSymbolAccessibleCore(symbol, within, throughType, out failedThroughTypeCheck);
96return IsSymbolAccessibleCore(((IAliasSymbol)symbol).Target, within, throughType, out failedThroughTypeCheck);
99return IsSymbolAccessibleCore(((IArrayTypeSymbol)symbol).ElementType, within, null, out failedThroughTypeCheck);
102return IsSymbolAccessibleCore(((IPointerTypeSymbol)symbol).PointedAtType, within, null, out failedThroughTypeCheck);
106if (!IsSymbolAccessibleCore(funcPtrSignature.ReturnType, within, null, out failedThroughTypeCheck))
113if (!IsSymbolAccessibleCore(param.Type, within, null, out failedThroughTypeCheck))
168return IsSymbolAccessibleCore(((IPointerTypeSymbol)symbol.ContainingSymbol).PointedAtType, within, null, out failedThroughTypeCheck);
200!IsSymbolAccessibleCore(typeArg, within, null, out _))