30 references to DeclaredSymbolInfoKind
Microsoft.CodeAnalysis.Workspaces (30)
FindSymbols\FindReferences\DependentTypeFinder_ProjectIndex.cs (6)
75case DeclaredSymbolInfoKind.Class: 76case DeclaredSymbolInfoKind.Record: 79case DeclaredSymbolInfoKind.Enum: 82case DeclaredSymbolInfoKind.Struct: 83case DeclaredSymbolInfoKind.RecordStruct: 86case DeclaredSymbolInfoKind.Delegate:
FindSymbols\TopLevelSyntaxTree\DeclaredSymbolInfo.cs (4)
99public DeclaredSymbolInfoKind Kind => GetKind(_flags); 115DeclaredSymbolInfoKind kind, 158private static DeclaredSymbolInfoKind GetKind(uint flags) 159=> (DeclaredSymbolInfoKind)(flags & Lower5BitMask);
LanguageServices\DeclaredSymbolFactoryService\AbstractDeclaredSymbolInfoFactoryService.cs (2)
275declaredSymbolInfos.Last().Kind == DeclaredSymbolInfoKind.ExtensionMethod && 314DeclaredSymbolInfoKind.Namespace,
Workspace\Solution\Project.cs (18)
404case DeclaredSymbolInfoKind.Namespace: 406case DeclaredSymbolInfoKind.Class: 407case DeclaredSymbolInfoKind.Delegate: 408case DeclaredSymbolInfoKind.Enum: 409case DeclaredSymbolInfoKind.Interface: 410case DeclaredSymbolInfoKind.Module: 411case DeclaredSymbolInfoKind.Record: 412case DeclaredSymbolInfoKind.RecordStruct: 413case DeclaredSymbolInfoKind.Struct: 415case DeclaredSymbolInfoKind.Constant: 416case DeclaredSymbolInfoKind.Constructor: 417case DeclaredSymbolInfoKind.EnumMember: 418case DeclaredSymbolInfoKind.Event: 419case DeclaredSymbolInfoKind.ExtensionMethod: 420case DeclaredSymbolInfoKind.Field: 421case DeclaredSymbolInfoKind.Indexer: 422case DeclaredSymbolInfoKind.Method: 423case DeclaredSymbolInfoKind.Property: