30 references to DeclaredSymbolInfoKind
Microsoft.CodeAnalysis.Workspaces (30)
FindSymbols\FindReferences\DependentTypeFinder_ProjectIndex.cs (6)
96
case
DeclaredSymbolInfoKind
.Class:
97
case
DeclaredSymbolInfoKind
.Record:
100
case
DeclaredSymbolInfoKind
.Enum:
103
case
DeclaredSymbolInfoKind
.Struct:
104
case
DeclaredSymbolInfoKind
.RecordStruct:
107
case
DeclaredSymbolInfoKind
.Delegate:
FindSymbols\TopLevelSyntaxTree\DeclaredSymbolInfo.cs (4)
99
public
DeclaredSymbolInfoKind
Kind => GetKind(_flags);
115
DeclaredSymbolInfoKind
kind,
158
private static
DeclaredSymbolInfoKind
GetKind(uint flags)
159
=> (
DeclaredSymbolInfoKind
)(flags & Lower5BitMask);
LanguageServices\DeclaredSymbolFactoryService\AbstractDeclaredSymbolInfoFactoryService.cs (2)
275
declaredSymbolInfos.Last().Kind ==
DeclaredSymbolInfoKind
.ExtensionMethod &&
314
DeclaredSymbolInfoKind
.Namespace,
Workspace\Solution\Project.cs (18)
439
case
DeclaredSymbolInfoKind
.Namespace:
441
case
DeclaredSymbolInfoKind
.Class:
442
case
DeclaredSymbolInfoKind
.Delegate:
443
case
DeclaredSymbolInfoKind
.Enum:
444
case
DeclaredSymbolInfoKind
.Interface:
445
case
DeclaredSymbolInfoKind
.Module:
446
case
DeclaredSymbolInfoKind
.Record:
447
case
DeclaredSymbolInfoKind
.RecordStruct:
448
case
DeclaredSymbolInfoKind
.Struct:
450
case
DeclaredSymbolInfoKind
.Constant:
451
case
DeclaredSymbolInfoKind
.Constructor:
452
case
DeclaredSymbolInfoKind
.EnumMember:
453
case
DeclaredSymbolInfoKind
.Event:
454
case
DeclaredSymbolInfoKind
.ExtensionMethod:
455
case
DeclaredSymbolInfoKind
.Field:
456
case
DeclaredSymbolInfoKind
.Indexer:
457
case
DeclaredSymbolInfoKind
.Method:
458
case
DeclaredSymbolInfoKind
.Property: