33 references to DeclaredSymbolInfoKind
Microsoft.CodeAnalysis.CSharp.Features (1)
SolutionExplorer\CSharpSolutionExplorerSymbolTreeItemProvider.cs (1)
208var kind = fieldDeclaration is EventFieldDeclarationSyntax
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
FindSymbols\CSharpDeclaredSymbolInfoFactoryService.cs (1)
386var kind = fieldDeclaration is EventFieldDeclarationSyntax
Microsoft.CodeAnalysis.Workspaces (31)
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)
100public DeclaredSymbolInfoKind Kind => GetKind(_flags); 116DeclaredSymbolInfoKind kind, 159private static DeclaredSymbolInfoKind GetKind(uint flags) 160=> (DeclaredSymbolInfoKind)(flags & Lower5BitMask);
LanguageServices\DeclaredSymbolFactoryService\AbstractDeclaredSymbolInfoFactoryService.cs (2)
275declaredSymbolInfos.Last().Kind == DeclaredSymbolInfoKind.ExtensionMethod && 314DeclaredSymbolInfoKind.Namespace,
Workspace\Solution\Project.cs (19)
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: 459case DeclaredSymbolInfoKind.Operator: