10 references to Keyword
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
90
KeywordFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Keywords, 'k', WellKnownTags.
Keyword
);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (2)
IntelliSense\VisualBasicCompletionCommandHandlerTests.vb (2)
2191
Assert.True(doubleItem.Tags.Contains(WellKnownTags.
Keyword
))
2212
Assert.True(doubleItems.Any(Function(c) c.Tags.Contains(WellKnownTags.
Keyword
)))
Microsoft.CodeAnalysis.Features (4)
Common\GlyphExtensions.cs (1)
133
case WellKnownTags.
Keyword
:
Completion\CommonCompletionService.cs (1)
40
=> item.Tags.Contains(WellKnownTags.
Keyword
);
Completion\CompletionHelper.cs (1)
74
=> item.Tags.Contains(WellKnownTags.
Keyword
);
Completion\CompletionTags.cs (1)
42
public const string Keyword = WellKnownTags.
Keyword
;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
63
{ WellKnownTags.
Keyword
, LSP.CompletionItemKind.Keyword },
Microsoft.CodeAnalysis.Workspaces (2)
Tags\WellKnownTags.cs (2)
34
public const string Keyword = nameof(
Keyword
);
100
internal static readonly ImmutableArray<string> Keyword = ImmutableArray.Create(WellKnownTags.
Keyword
);