13 references to Exact
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (5)
Utilities\PatternMatcherTests.cs (5)
128
[InlineData("[|Goo|]", "Goo", PatternMatchKind.
Exact
, CaseSensitive)]
129
[InlineData("[|goo|]", "Goo", PatternMatchKind.
Exact
, CaseInsensitive)]
130
[InlineData("[|Goo|]", "goo", PatternMatchKind.
Exact
, CaseInsensitive)]
238
AssertContainsType(PatternMatchKind.
Exact
, match);
413
Assert.Equal(PatternMatchKind.
Exact
, match.Value.Kind);
Microsoft.CodeAnalysis.Features (6)
Completion\CompletionHelper.cs (4)
240
if (match1.Kind != PatternMatchKind.
Exact
&& match2.Kind != PatternMatchKind.
Exact
)
273
Debug.Assert(isItem1Expanded && match1.Kind == PatternMatchKind.
Exact
&& !isItem2Expanded && match2.Kind > PatternMatchKind.Prefix ||
274
isItem2Expanded && match2.Kind == PatternMatchKind.
Exact
&& !isItem1Expanded && match1.Kind > PatternMatchKind.Prefix);
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (1)
28
(PatternMatchKind.
Exact
, NavigateToMatchKind.Exact),
NavigateTo\INavigateToSearchResult.cs (1)
45
NavigateToMatchKind.Exact => PatternMatchKind.
Exact
,
Microsoft.CodeAnalysis.Workspaces (1)
PatternMatching\PatternMatcher.cs (1)
181
PatternMatchKind.
Exact
, punctuationStripped, isCaseSensitive: candidate == patternChunk.Text,
Microsoft.VisualStudio.LanguageServices (1)
NavigateTo\RoslynNavigateToSearchCallback.cs (1)
92
PatternMatching.PatternMatchKind.
Exact
=> PatternMatchKind.Exact,