5 references to MinFuzzyLength
Microsoft.CodeAnalysis.Workspaces (5)
FindSymbols\TopLevelSyntaxTree\NavigateToSearchIndex.NavigateToSearchInfo.cs (2)
681/// ±2 for length 6+. Patterns shorter than <see cref="WordSimilarityChecker.MinFuzzyLength"/> 687if (_symbolNameLengthBitset == 0 || pattern.Length < WordSimilarityChecker.MinFuzzyLength)
PatternMatching\FuzzyPatternMatcher.cs (1)
31_invalidPattern = string.IsNullOrWhiteSpace(pattern) || pattern.Length < WordSimilarityChecker.MinFuzzyLength;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\WordSimilarityChecker.cs (2)
85/// <item>Length 1–2: no fuzzy matching (see <see cref="MinFuzzyLength"/>)</item> 108if (_source.Length < MinFuzzyLength)