2 overrides of AddMatches
Microsoft.CodeAnalysis.Workspaces (2)
PatternMatching\ContainerPatternMatcher.cs (1)
44public override bool AddMatches(string? container, ref TemporaryArray<PatternMatch> matches)
PatternMatching\SimplePatternMatcher.cs (1)
44public override bool AddMatches(string candidate, ref TemporaryArray<PatternMatch> matches)
4 references to AddMatches
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Utilities\PatternMatcherTests.cs (1)
482PatternMatcher.CreatePatternMatcher(pattern, includeMatchedSpans: true).AddMatches(candidate, ref matches.AsRef());
Microsoft.CodeAnalysis.Features (2)
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (2)
103nameMatcher.AddMatches(declaredSymbolInfo.Name, ref nameMatches.AsRef()) && 104containerMatcher?.AddMatches(declaredSymbolInfo.FullyQualifiedContainerName, ref containerMatches.AsRef()) != false)
Microsoft.CodeAnalysis.Workspaces (1)
PatternMatching\PatternMatcherExtensions.cs (1)
16matcher.AddMatches(candidate, ref matches.AsRef());