15 references to DeclaredSymbolInfo
Microsoft.CodeAnalysis.Features (15)
NavigateTo\AbstractNavigateToSearchService.NormalSearch.cs (1)
85if (documentAndSpan.spans is null || documentAndSpan.spans.IntersectsWith(item.DeclaredSymbolInfo.Span))
NavigateTo\RoslynNavigateToItem.cs (14)
127return (item.DeclaredSymbolInfo.IsPartial, IsNonNestedNamedType(in item)) switch 130(true, false) => string.Format(FeaturesResources.in_0_1_2, item.DeclaredSymbolInfo.ContainerDisplayName, itemDocument.Name, combinedProjectName), 132(false, false) => string.Format(FeaturesResources.in_0_project_1, item.DeclaredSymbolInfo.ContainerDisplayName, combinedProjectName), 178=> !item.DeclaredSymbolInfo.IsNestedType && IsNamedType(in item); 182switch (item.DeclaredSymbolInfo.Kind) 203string INavigateToSearchResult.Name => _item.DeclaredSymbolInfo.Name; 218parts.Add(_item.DeclaredSymbolInfo.ParameterCount.ToString("X4")); 219parts.Add(_item.DeclaredSymbolInfo.TypeParameterCount.ToString("X4")); 220parts.Add(_item.DeclaredSymbolInfo.Name); 283Glyph INavigableItem.Glyph => GlyphExtensions.GetGlyph(_item.DeclaredSymbolInfo.Kind, _item.DeclaredSymbolInfo.Accessibility); 287TextTags.Text, _item.DeclaredSymbolInfo.Name + _item.DeclaredSymbolInfo.NameSuffix)]; 299TextSpan INavigableItem.SourceSpan => _item.DeclaredSymbolInfo.Span;