30 references to DeclaredSymbolInfoKind
Microsoft.CodeAnalysis.Workspaces (30)
FindSymbols\FindReferences\DependentTypeFinder_ProjectIndex.cs (6)
96case DeclaredSymbolInfoKind.Class: 97case DeclaredSymbolInfoKind.Record: 100case DeclaredSymbolInfoKind.Enum: 103case DeclaredSymbolInfoKind.Struct: 104case DeclaredSymbolInfoKind.RecordStruct: 107case 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)
439case DeclaredSymbolInfoKind.Namespace: 441case DeclaredSymbolInfoKind.Class: 442case DeclaredSymbolInfoKind.Delegate: 443case DeclaredSymbolInfoKind.Enum: 444case DeclaredSymbolInfoKind.Interface: 445case DeclaredSymbolInfoKind.Module: 446case DeclaredSymbolInfoKind.Record: 447case DeclaredSymbolInfoKind.RecordStruct: 448case DeclaredSymbolInfoKind.Struct: 450case DeclaredSymbolInfoKind.Constant: 451case DeclaredSymbolInfoKind.Constructor: 452case DeclaredSymbolInfoKind.EnumMember: 453case DeclaredSymbolInfoKind.Event: 454case DeclaredSymbolInfoKind.ExtensionMethod: 455case DeclaredSymbolInfoKind.Field: 456case DeclaredSymbolInfoKind.Indexer: 457case DeclaredSymbolInfoKind.Method: 458case DeclaredSymbolInfoKind.Property: