11 references to GetAllSymbols
Microsoft.CodeAnalysis.CodeStyle (1)
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
364foreach (var symbol in symbolInfo.GetAllSymbols())
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
SyntaxNodeExtensions.cs (1)
1008foreach (var symbol in info.GetAllSymbols())
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (5)
CSharpTypeInferenceService.TypeInferrer.cs (5)
111var allSymbols = symbolInfo.GetAllSymbols(); 1337var addMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(initializerExpression).GetAllSymbols(); 1355var addMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(expressionOpt).GetAllSymbols(); 1446var addMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(expressionOpt).GetAllSymbols(); 1502foreach (var symbol in this.SemanticModel.GetSymbolInfo(subpattern.ExpressionColon.Expression).GetAllSymbols())
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (2)
SyntaxNodeExtensions.vb (1)
1115For Each symbol In info.GetAllSymbols()
VisualBasicRemoveUnusedMembersDiagnosticAnalyzer.vb (1)
41For Each symbol In symbolInfo.GetAllSymbols()
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (2)
VisualBasicTypeInferenceService.TypeInferrer.vb (2)
1037Dim expressionAddMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(expression).GetAllSymbols().OfType(Of IMethodSymbol) 1049Dim initializerAddMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(collectionInitializer).GetAllSymbols().OfType(Of IMethodSymbol)