2 overrides of AddMatches
Microsoft.CodeAnalysis.Workspaces (2)
PatternMatching\ContainerPatternMatcher.cs (1)
47public 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)
464PatternMatcher.CreatePatternMatcher(pattern, includeMatchedSpans: true).AddMatches(candidate, ref matches.AsRef());
Microsoft.CodeAnalysis.Features (2)
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (2)
146nameMatcher.AddMatches(declaredSymbolInfo.Name, ref nameMatches.AsRef()) && 147containerMatcher?.AddMatches(declaredSymbolInfo.FullyQualifiedContainerName, ref containerMatches.AsRef()) != false)
Microsoft.CodeAnalysis.Workspaces (1)
PatternMatching\PatternMatcherExtensions.cs (1)
15matcher.AddMatches(candidate, ref matches.AsRef());