105 references to NavigateToItemKind
Microsoft.CodeAnalysis.ExternalAccess.FSharp (15)
NavigateTo\FSharpNavigateToItemKind.cs (15)
13public static string Line => NavigateToItemKind.Line; 14public static string File = NavigateToItemKind.File; 15public static string Class => NavigateToItemKind.Class; 16public static string Structure => NavigateToItemKind.Structure; 17public static string Interface => NavigateToItemKind.Interface; 18public static string Delegate => NavigateToItemKind.Delegate; 19public static string Enum => NavigateToItemKind.Enum; 20public static string Module => NavigateToItemKind.Module; 21public static string Constant => NavigateToItemKind.Constant; 22public static string EnumItem => NavigateToItemKind.EnumItem; 23public static string Field => NavigateToItemKind.Field; 24public static string Method => NavigateToItemKind.Method; 25public static string Property => NavigateToItemKind.Property; 26public static string Event => NavigateToItemKind.Event; 27public static string OtherSymbol => NavigateToItemKind.OtherSymbol;
Microsoft.CodeAnalysis.Features (38)
NavigateTo\AbstractNavigateToSearchService.cs (12)
15NavigateToItemKind.Class, 16NavigateToItemKind.Constant, 17NavigateToItemKind.Delegate, 18NavigateToItemKind.Enum, 19NavigateToItemKind.EnumItem, 20NavigateToItemKind.Event, 21NavigateToItemKind.Field, 22NavigateToItemKind.Interface, 23NavigateToItemKind.Method, 24NavigateToItemKind.Module, 25NavigateToItemKind.Property, 26NavigateToItemKind.Structure);
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (25)
234return NavigateToItemKind.Class; 236return NavigateToItemKind.Structure; 238return NavigateToItemKind.Constant; 240return NavigateToItemKind.Delegate; 242return NavigateToItemKind.Enum; 244return NavigateToItemKind.EnumItem; 246return NavigateToItemKind.Event; 248return NavigateToItemKind.Field; 250return NavigateToItemKind.Interface; 254return NavigateToItemKind.Method; 256return NavigateToItemKind.Module; 259return NavigateToItemKind.Property; 261return NavigateToItemKind.Structure; 301case NavigateToItemKind.Class: 305case NavigateToItemKind.Constant: 309case NavigateToItemKind.Delegate: 313case NavigateToItemKind.Enum: 317case NavigateToItemKind.EnumItem: 321case NavigateToItemKind.Event: 325case NavigateToItemKind.Field: 329case NavigateToItemKind.Interface: 333case NavigateToItemKind.Method: 339case NavigateToItemKind.Module: 343case NavigateToItemKind.Property: 348case NavigateToItemKind.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
42/// Will be one of the values from <see cref="NavigateToItemKind"/>.
Microsoft.CodeAnalysis.LanguageServer.Protocol (15)
Extensions\ProtocolConversions.cs (3)
405case NavigateToItemKind.EnumItem: 407case NavigateToItemKind.Structure: 409case NavigateToItemKind.Delegate:
Handler\Symbols\WorkspaceSymbolsHandler.cs (12)
28NavigateToItemKind.Class, 29NavigateToItemKind.Constant, 30NavigateToItemKind.Delegate, 31NavigateToItemKind.Enum, 32NavigateToItemKind.EnumItem, 33NavigateToItemKind.Event, 34NavigateToItemKind.Field, 35NavigateToItemKind.Interface, 36NavigateToItemKind.Method, 37NavigateToItemKind.Module, 38NavigateToItemKind.Property, 39NavigateToItemKind.Structure);
Microsoft.VisualStudio.LanguageServices (37)
NavigateTo\RoslynNavigateToSearchCallback.cs (13)
103NavigateToItemKind.Class => CodeSearchResultType.Class, 104NavigateToItemKind.Constant => CodeSearchResultType.Constant, 105NavigateToItemKind.Delegate => CodeSearchResultType.Delegate, 106NavigateToItemKind.Enum => CodeSearchResultType.Enum, 107NavigateToItemKind.EnumItem => CodeSearchResultType.EnumItem, 108NavigateToItemKind.Event => CodeSearchResultType.Event, 109NavigateToItemKind.Field => CodeSearchResultType.Field, 110NavigateToItemKind.Interface => CodeSearchResultType.Interface, 111NavigateToItemKind.Method => CodeSearchResultType.Method, 112NavigateToItemKind.Module => CodeSearchResultType.Module, 113NavigateToItemKind.OtherSymbol => CodeSearchResultType.OtherSymbol, 114NavigateToItemKind.Property => CodeSearchResultType.Property, 115NavigateToItemKind.Structure => CodeSearchResultType.Structure,
NavigateTo\RoslynSearchItemsSource.cs (12)
24.Add(NavigateToItemKind.Class) 25.Add(NavigateToItemKind.Enum) 26.Add(NavigateToItemKind.Structure) 27.Add(NavigateToItemKind.Interface) 28.Add(NavigateToItemKind.Delegate) 29.Add(NavigateToItemKind.Module); 31.Add(NavigateToItemKind.Constant) 32.Add(NavigateToItemKind.EnumItem) 33.Add(NavigateToItemKind.Field) 34.Add(NavigateToItemKind.Method) 35.Add(NavigateToItemKind.Property) 36.Add(NavigateToItemKind.Event);
Progression\GraphBuilder.cs (12)
711NavigateToItemKind.Class => CodeNodeCategories.Class, 712NavigateToItemKind.Delegate => CodeNodeCategories.Delegate, 713NavigateToItemKind.Enum => CodeNodeCategories.Enum, 714NavigateToItemKind.Interface => CodeNodeCategories.Interface, 715NavigateToItemKind.Module => CodeNodeCategories.Module, 716NavigateToItemKind.Structure => CodeNodeCategories.Struct, 717NavigateToItemKind.Method => CodeNodeCategories.Method, 718NavigateToItemKind.Property => CodeNodeCategories.Property, 719NavigateToItemKind.Event => CodeNodeCategories.Event, 720NavigateToItemKind.Constant or 721NavigateToItemKind.EnumItem or 722NavigateToItemKind.Field => CodeNodeCategories.Field,