94 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 (39)
NavigateTo\AbstractNavigateToSearchService.cs (12)
19NavigateToItemKind.Class, 20NavigateToItemKind.Constant, 21NavigateToItemKind.Delegate, 22NavigateToItemKind.Enum, 23NavigateToItemKind.EnumItem, 24NavigateToItemKind.Event, 25NavigateToItemKind.Field, 26NavigateToItemKind.Interface, 27NavigateToItemKind.Method, 28NavigateToItemKind.Module, 29NavigateToItemKind.Property, 30NavigateToItemKind.Structure];
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (26)
191return NavigateToItemKind.Class; 193return NavigateToItemKind.Structure; 195return NavigateToItemKind.Constant; 197return NavigateToItemKind.Delegate; 199return NavigateToItemKind.Enum; 201return NavigateToItemKind.EnumItem; 203return NavigateToItemKind.Event; 205return NavigateToItemKind.Field; 207return NavigateToItemKind.Interface; 211return NavigateToItemKind.Method; 213return NavigateToItemKind.Module; 216return NavigateToItemKind.Property; 218return NavigateToItemKind.Structure; 220return NavigateToItemKind.OtherSymbol; 260case NavigateToItemKind.Class: 264case NavigateToItemKind.Constant: 268case NavigateToItemKind.Delegate: 272case NavigateToItemKind.Enum: 276case NavigateToItemKind.EnumItem: 280case NavigateToItemKind.Event: 284case NavigateToItemKind.Field: 288case NavigateToItemKind.Interface: 292case NavigateToItemKind.Method: 298case NavigateToItemKind.Module: 302case NavigateToItemKind.Property: 307case NavigateToItemKind.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
51/// Will be one of the values from <see cref="NavigateToItemKind"/>.
Microsoft.CodeAnalysis.LanguageServer.Protocol (15)
Extensions\ProtocolConversions.cs (3)
554case NavigateToItemKind.EnumItem: 556case NavigateToItemKind.Structure: 558case NavigateToItemKind.Delegate:
Handler\Symbols\WorkspaceSymbolsHandler.cs (12)
31NavigateToItemKind.Class, 32NavigateToItemKind.Constant, 33NavigateToItemKind.Delegate, 34NavigateToItemKind.Enum, 35NavigateToItemKind.EnumItem, 36NavigateToItemKind.Event, 37NavigateToItemKind.Field, 38NavigateToItemKind.Interface, 39NavigateToItemKind.Method, 40NavigateToItemKind.Module, 41NavigateToItemKind.Property, 42NavigateToItemKind.Structure
Microsoft.VisualStudio.LanguageServices (25)
NavigateTo\RoslynNavigateToSearchCallback.cs (13)
110NavigateToItemKind.Class => CodeSearchResultType.Class, 111NavigateToItemKind.Constant => CodeSearchResultType.Constant, 112NavigateToItemKind.Delegate => CodeSearchResultType.Delegate, 113NavigateToItemKind.Enum => CodeSearchResultType.Enum, 114NavigateToItemKind.EnumItem => CodeSearchResultType.EnumItem, 115NavigateToItemKind.Event => CodeSearchResultType.Event, 116NavigateToItemKind.Field => CodeSearchResultType.Field, 117NavigateToItemKind.Interface => CodeSearchResultType.Interface, 118NavigateToItemKind.Method => CodeSearchResultType.Method, 119NavigateToItemKind.Module => CodeSearchResultType.Module, 120NavigateToItemKind.OtherSymbol => CodeSearchResultType.OtherSymbol, 121NavigateToItemKind.Property => CodeSearchResultType.Property, 122NavigateToItemKind.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);