17 references to GetAllSymbols
Microsoft.CodeAnalysis.CSharp.Workspaces (6)
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())
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs\SyntaxNodeExtensions.cs (1)
1008foreach (var symbol in info.GetAllSymbols())
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Completion\AbstractArgumentProviderTests`1.cs (1)
81var symbols = semanticModel.GetSymbolInfo(argumentList.GetRequiredParent(), cancellationToken).GetAllSymbols();
Microsoft.CodeAnalysis.Features (3)
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
364foreach (var symbol in symbolInfo.GetAllSymbols())
ExtractMethod\MethodExtractor.Analyzer.SymbolMapBuilder.cs (1)
70foreach (var sym in symbolInfo.GetAllSymbols())
GenerateMember\GenerateParameterizedMember\AbstractGenerateMethodService.State.cs (1)
196if (semanticInfo.GetAllSymbols().Any(static s => s.Kind is SymbolKind.Local or SymbolKind.Parameter) &&
Microsoft.CodeAnalysis.VisualBasic.Features (2)
ExtractMethod\Extensions.vb (1)
140Dim methodSymbols = model.GetSymbolInfo(invocation, cancellationToken).GetAllSymbols().Where(Function(s) s.Kind = SymbolKind.Method).Cast(Of IMethodSymbol)()
VisualBasicRemoveUnusedMembersDiagnosticAnalyzer.vb (1)
41For Each symbol In symbolInfo.GetAllSymbols()
Microsoft.CodeAnalysis.VisualBasic.Workspaces (4)
CodeCleanup\Providers\AddMissingTokensCodeCleanupProvider.vb (1)
122Dim symbols = Me._model.GetSymbolInfo(expression, _cancellationToken).GetAllSymbols()
SyntaxNodeExtensions.vb (1)
1115For Each symbol In info.GetAllSymbols()
VisualBasicTypeInferenceService.TypeInferrer.vb (2)
1037Dim expressionAddMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(expression).GetAllSymbols().OfType(Of IMethodSymbol) 1049Dim initializerAddMethodSymbols = SemanticModel.GetCollectionInitializerSymbolInfo(collectionInitializer).GetAllSymbols().OfType(Of IMethodSymbol)
Microsoft.CodeAnalysis.Workspaces (1)
Recommendations\AbstractRecommendationServiceRunner.cs (1)
138var invocationSymbols = _context.SemanticModel.GetSymbolInfo(invocationExpression).GetAllSymbols();