7 references to AddMatches
IdeCoreBenchmarks (1)
NavigateToPreFilterBenchmarks.cs (1)
57if (matcher.AddMatches(name, ref matches.AsRef()))
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Utilities\PatternMatcherTests.cs (1)
481PatternMatcher.CreatePatternMatcher(pattern, includeMatchedSpans: true).AddMatches(candidate, ref matches.AsRef());
Microsoft.CodeAnalysis.Features (2)
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (2)
110nameMatcher.AddMatches(declaredSymbolInfo.Name, ref nameMatches.AsRef()) && 111containerMatcher?.AddMatches(declaredSymbolInfo.FullyQualifiedContainerName, ref containerMatches.AsRef()) != false)
Microsoft.CodeAnalysis.Workspaces (2)
PatternMatching\CompoundPatternMatcher.cs (1)
41if (matcher.AddMatches(candidate, ref matches))
PatternMatching\PatternMatcherExtensions.cs (1)
15matcher.AddMatches(candidate, ref matches.AsRef());
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
FindSymbols\NavigateToSearchIndexTests.cs (1)
47return matcher.AddMatches(container, ref matches.AsRef());