5 references to GetCaseInsensitivePrefixLength
Microsoft.CodeAnalysis.EditorFeatures (4)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (4)
369
var longestCommonPrefixLength = bestOrFirstMatchResult.FilterTextUsed.
GetCaseInsensitivePrefixLength
(_filterText);
374
var commonPrefixLength = matchResult.FilterTextUsed.
GetCaseInsensitivePrefixLength
(_filterText);
554
var comparison = x.FilterTextUsed.
GetCaseInsensitivePrefixLength
(pattern).CompareTo(y.FilterTextUsed.
GetCaseInsensitivePrefixLength
(pattern));
Microsoft.CodeAnalysis.Features (1)
Completion\PatternMatchHelper.cs (1)
216
return filterText.
GetCaseInsensitivePrefixLength
(Pattern) > 0;