28 references to SupportedPlatformData
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\CompletionSource.cs (1)
536var supportedPlatforms = SymbolCompletionItem.GetSupportedPlatforms(roslynItem, document.Project.Solution);
Microsoft.CodeAnalysis.Features (27)
Completion\CommonCompletionUtilities.cs (3)
102SolutionServices workspaceServices, SemanticModel semanticModel, int position, IReadOnlyList<ISymbol> symbols, SymbolDescriptionOptions options, SupportedPlatformData supportedPlatforms) 108SolutionServices workspaceServices, SemanticModel semanticModel, int position, ISymbol symbol, int overloadCount, SymbolDescriptionOptions options, SupportedPlatformData? supportedPlatforms, CancellationToken cancellationToken) 173SolutionServices workspaceServices, SemanticModel semanticModel, int position, IReadOnlyList<ISymbol> symbols, SymbolDescriptionOptions options, SupportedPlatformData? supportedPlatforms, CancellationToken cancellationToken)
Completion\Providers\AbstractObjectCreationCompletionProvider.cs (1)
33SupportedPlatformData? supportedPlatformData)
Completion\Providers\AbstractRecommendationServiceBasedCompletionProvider.cs (1)
139SupportedPlatformData? supportedPlatformData)
Completion\Providers\AbstractSymbolCompletionProvider.cs (5)
48SupportedPlatformData? supportedPlatformData); 155var supportedPlatformData = ComputeSupportedPlatformData(completionContext, symbolList, invalidProjectMap, totalProjects); 201private static SupportedPlatformData? ComputeSupportedPlatformData( 207SupportedPlatformData? supportedPlatformData = null; 230SupportedPlatformData? supportedPlatformData)
Completion\Providers\SymbolCompletionItem.cs (9)
39SupportedPlatformData? supportedPlatforms = null, 203var supportedPlatforms = GetSupportedPlatforms(item, document.Project.Solution); 211private static Document FindAppropriateDocumentForDescriptionContext(Document document, SupportedPlatformData? supportedPlatforms) 225private static void AddSupportedPlatforms(ArrayBuilder<KeyValuePair<string, string>> properties, SupportedPlatformData? supportedPlatforms) 234public static SupportedPlatformData? GetSupportedPlatforms(CompletionItem item, Solution solution) 279SupportedPlatformData? supportedPlatforms = null, 314SupportedPlatformData? supportedPlatforms = null, 338SupportedPlatformData? supportedPlatforms = null, 363var supportedPlatforms = GetSupportedPlatforms(item, document.Project.Solution);
ExternalAccess\Pythia\Api\PythiaCompletionProviderBase.cs (1)
42SupportedPlatformData? supportedPlatforms = null,
QuickInfo\CommonSemanticQuickInfoProvider.cs (4)
49private async Task<(TokenInformation tokenInformation, SupportedPlatformData? supportedPlatforms)> ComputeQuickInfoDataAsync( 66private async Task<(TokenInformation, SupportedPlatformData supportedPlatforms)> ComputeFromLinkedDocumentsAsync( 129var supportedPlatforms = new SupportedPlatformData(solution, invalidProjects, candidateProjects); 158SupportedPlatformData? supportedPlatforms,
QuickInfo\QuickInfoUtilities.cs (1)
29SupportedPlatformData? supportedPlatforms,
SignatureHelp\AbstractSignatureHelpProvider.cs (2)
292var platformData = new SupportedPlatformData(document.Project.Solution, invalidProjectsForCurrentSymbol, totalProjects); 320private static SignatureHelpItem UpdateItem(SignatureHelpItem item, SupportedPlatformData platformData)