1 write to _filterText
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (1)
83_filterText = applicableToSpan.GetText(_snapshotData.Snapshot);
22 references to _filterText
Microsoft.CodeAnalysis.EditorFeatures (22)
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (22)
61=> _snapshotData.DisplaySuggestionItem && _filterText.Length > 0; 107_highlightMatchingPortions = _filterText.Length > 0 136var threadLocalPatternMatchHelper = new ThreadLocal<PatternMatchHelper>(() => new PatternMatchHelper(_filterText), trackAllValues: true); 220if (_filterText.Length > 0 && char.IsNumber(_filterText[0]) && !IsAfterDot(_snapshotData.Snapshot, _applicableToSpan)) 231_filterText.Length == 0) 350_filterMethod(matchResults, _filterText, filteredMatchResultsBuilder); 368var longestCommonPrefixLength = bestOrFirstMatchResult.FilterTextUsed.GetCaseInsensitivePrefixLength(_filterText); 373var commonPrefixLength = matchResult.FilterTextUsed.GetCaseInsensitivePrefixLength(_filterText); 405if (_filterText.Length > 0) 422!string.IsNullOrEmpty(_filterText) && 423!string.Equals(_filterText, typedChar.ToString(), StringComparison.OrdinalIgnoreCase) && 425!Helpers.IsFilterCharacter(bestOrFirstMatchResult.CompletionItem, typedChar, _filterText)) 505var match = CompareForDeletion(currentMatchResult, bestMatchResult.Value, _filterText); 542hardSelect = !_hasSuggestedItemOptions && bestMatchResult.Value.FilterTextUsed.StartsWith(_filterText, StringComparison.CurrentCultureIgnoreCase); 780if (_filterText.Length > 0 && CompletionService.IsAllPunctuation(_filterText) && _filterText != item.DisplayText) 788if (_filterText.Length == 0) 806Debug.Assert(_filterText.Length > 0 || item.Rules.MatchPriority != MatchPriority.Default); 862if (_filterText.Length == 0) 928var selectionHint = _filterText.Length == 0 ? UpdateSelectionHint.SoftSelected : initialSelection.SelectionHint;