1 write to _filterText
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (1)
84_filterText = applicableToSpan.GetText(_snapshotData.Snapshot);
22 references to _filterText
Microsoft.CodeAnalysis.EditorFeatures (22)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (22)
62=> _snapshotData.DisplaySuggestionItem && _filterText.Length > 0; 108_highlightMatchingPortions = _filterText.Length > 0 137var threadLocalPatternMatchHelper = new ThreadLocal<PatternMatchHelper>(() => new PatternMatchHelper(_filterText), trackAllValues: true); 221if (_filterText.Length > 0 && char.IsNumber(_filterText[0]) && !IsAfterDot(_snapshotData.Snapshot, _applicableToSpan)) 232_filterText.Length == 0) 351_filterMethod(matchResults, _filterText, filteredMatchResultsBuilder); 369var longestCommonPrefixLength = bestOrFirstMatchResult.FilterTextUsed.GetCaseInsensitivePrefixLength(_filterText); 374var commonPrefixLength = matchResult.FilterTextUsed.GetCaseInsensitivePrefixLength(_filterText); 406if (_filterText.Length > 0) 423!string.IsNullOrEmpty(_filterText) && 424!string.Equals(_filterText, typedChar.ToString(), StringComparison.OrdinalIgnoreCase) && 426!Helpers.IsFilterCharacter(bestOrFirstMatchResult.CompletionItem, typedChar, _filterText)) 506var match = CompareForDeletion(currentMatchResult, bestMatchResult.Value, _filterText); 543hardSelect = !_hasSuggestedItemOptions && bestMatchResult.Value.FilterTextUsed.StartsWith(_filterText, StringComparison.CurrentCultureIgnoreCase); 781if (_filterText.Length > 0 && CompletionService.IsAllPunctuation(_filterText) && _filterText != item.DisplayText) 789if (_filterText.Length == 0) 807Debug.Assert(_filterText.Length > 0 || item.Rules.MatchPriority != MatchPriority.Default); 863if (_filterText.Length == 0) 929var selectionHint = _filterText.Length == 0 ? UpdateSelectionHint.SoftSelected : initialSelection.SelectionHint;