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