2 instantiations of MatchResult
Microsoft.CodeAnalysis.Features (2)
Completion\PatternMatchHelper.cs (2)
118return new MatchResult( 187matchResult = new MatchResult(
21 references to MatchResult
Microsoft.CodeAnalysis.Features (21)
Completion\CommonCompletionService.cs (2)
45IReadOnlyList<MatchResult> matchResults, 47IList<MatchResult> builder)
Completion\CompletionHelper.cs (2)
31public int CompareMatchResults(MatchResult matchResult1, MatchResult matchResult2, bool filterTextHasNoUpperCase)
Completion\CompletionService.cs (7)
266private static readonly ObjectPool<List<MatchResult>> s_listOfMatchResultPool = new(factory: () => []); 282var filterDataList = new SegmentedList<MatchResult>( 301IReadOnlyList<MatchResult> matchResults, 303IList<MatchResult> builder) 320IReadOnlyList<MatchResult> matchResults, 322IList<MatchResult> builder) 332foreach (var matchResult in matchResults)
Completion\MatchResult.cs (4)
47public static IComparer<MatchResult> SortingComparer { get; } = new Comparer(); 49private sealed class Comparer : IComparer<MatchResult> 53public int Compare(MatchResult x, MatchResult y)
Completion\PatternMatchHelper.cs (2)
97public MatchResult GetMatchResult( 141out MatchResult matchResult)
ExternalAccess\VSTypeScript\Api\VSTypeScriptCompletionServiceWithProviders.cs (4)
31IReadOnlyList<MatchResult> matchResults, 33IList<MatchResult> builder) 38IReadOnlyList<MatchResult> matchResults, 40IList<MatchResult> builder)