13 references to FilterText
Microsoft.CodeAnalysis.Features (13)
Completion\CompletionHelper.cs (2)
63
if (!TagsEqual(item1, item2) && item1.
FilterText
== item2.
FilterText
)
Completion\CompletionItem.cs (6)
53
/// If provided, each additional string would be used in the same way as <see cref="
FilterText
"/> for item matching.
55
/// of <see cref="
FilterText
"/> when they have identical pattern matching result.
60
/// Returns <see langword="true"/> if <see cref="DisplayText"/> is identical to <see cref="
FilterText
"/>.
359
var newFilterText = filterText.HasValue ? filterText.Value :
FilterText
;
372
newFilterText ==
FilterText
&&
433
/// Creates a copy of this <see cref="CompletionItem"/> with the <see cref="
FilterText
"/> property changed.
Completion\MatchResult.cs (1)
31
public string FilterTextUsed => MatchedAdditionalFilterText ?? CompletionItem.
FilterText
;
Completion\PatternMatchHelper.cs (3)
102
var match = GetMatch(item.
FilterText
, includeMatchSpans, culture);
150
? GetMatch(item.
FilterText
, includeMatchSpans, CultureInfo.CurrentCulture)
155
item.
FilterText
,
SpellCheck\AbstractSpellCheckCodeFixProvider.cs (1)
162
var candidateText = item.
FilterText
;