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