1 write to _item
Microsoft.CodeAnalysis.Features (1)
NavigateTo\RoslynNavigateToItem.cs (1)
125
_item
= item;
23 references to _item
Microsoft.CodeAnalysis.Features (23)
NavigateTo\RoslynNavigateToItem.cs (23)
108
/// The <see cref="Document"/> that <see cref="
_item
"/> is contained within.
136
return (
_item
.DeclaredSymbolInfo.IsPartial, IsNonNestedNamedType()) switch
139
(true, false) => string.Format(FeaturesResources.in_0_1_2,
_item
.DeclaredSymbolInfo.ContainerDisplayName, _itemDocument.Name, combinedProjectName),
141
(false, false) => string.Format(FeaturesResources.in_0_project_1,
_item
.DeclaredSymbolInfo.ContainerDisplayName, combinedProjectName),
148
if (
_item
.AdditionalMatchingProjects.Length > 0)
165
foreach (var additionalProjectId in
_item
.AdditionalMatchingProjects)
187
=> !
_item
.DeclaredSymbolInfo.IsNestedType && IsNamedType();
191
switch (
_item
.DeclaredSymbolInfo.Kind)
206
string INavigateToSearchResult.Kind =>
_item
.Kind;
208
NavigateToMatchKind INavigateToSearchResult.MatchKind =>
_item
.MatchKind;
210
bool INavigateToSearchResult.IsCaseSensitive =>
_item
.IsCaseSensitive;
212
string INavigateToSearchResult.Name =>
_item
.DeclaredSymbolInfo.Name;
214
ImmutableArray<TextSpan> INavigateToSearchResult.NameMatchSpans =>
_item
.NameMatchSpans;
227
parts.Add(
_item
.DeclaredSymbolInfo.ParameterCount.ToString("X4"));
228
parts.Add(
_item
.DeclaredSymbolInfo.TypeParameterCount.ToString("X4"));
229
parts.Add(
_item
.DeclaredSymbolInfo.Name);
288
ImmutableArray<PatternMatch> INavigateToSearchResult.Matches =>
_item
.Matches;
292
Glyph INavigableItem.Glyph => GetGlyph(
_item
.DeclaredSymbolInfo.Kind,
_item
.DeclaredSymbolInfo.Accessibility);
346
TextTags.Text,
_item
.DeclaredSymbolInfo.Name +
_item
.DeclaredSymbolInfo.NameSuffix));
358
TextSpan INavigableItem.SourceSpan =>
_item
.DeclaredSymbolInfo.Span;
360
bool INavigableItem.IsStale =>
_item
.IsStale;