20 references to CamelCaseExact
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (14)
Utilities\PatternMatcherTests.cs (14)
160[InlineData("[|F|]og[|B|]ar", "FB", PatternMatchKind.CamelCaseExact, CaseSensitive)] 161[InlineData("[|Fo|]g[|B|]ar", "FoB", PatternMatchKind.CamelCaseExact, CaseSensitive)] 162[InlineData("[|_f|]og[|B|]ar", "_fB", PatternMatchKind.CamelCaseExact, CaseSensitive)] 163[InlineData("[|F|]og[|_B|]ar", "F_B", PatternMatchKind.CamelCaseExact, CaseSensitive)] 164[InlineData("[|F|]og[|B|]ar", "fB", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 174[InlineData("[|F|]og[|_B|]ar", "F_b", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 175[InlineData("[|_F|]og[|B|]ar", "_fB", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 176[InlineData("[|F|]og[|_B|]ar", "f_B", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 178[InlineData("[|Si|]mple[|UI|]Element", "SiUI", PatternMatchKind.CamelCaseExact, CaseSensitive)] 182[InlineData("[|Co|]de[|Fi|]x[|Pro|]vider", "cofipro", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 187[InlineData("[|C|]ore[|Ofi|]lac[|Pro|]fessional", "cofipro", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 188[InlineData("[|C|]lear[|Ofi|]lac[|Pro|]fessional", "cofipro", PatternMatchKind.CamelCaseExact, CaseInsensitive)] 197[InlineData("[|C|]reate[|R|]ange", "CR", PatternMatchKind.CamelCaseExact, CaseSensitive)] 336AssertContainsType(PatternMatchKind.CamelCaseExact, match);
Microsoft.CodeAnalysis.Features (2)
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (1)
32(PatternMatchKind.CamelCaseExact, NavigateToMatchKind.CamelCaseExact),
NavigateTo\INavigateToSearchResult.cs (1)
50NavigateToMatchKind.CamelCaseExact => PatternMatchKind.CamelCaseExact,
Microsoft.CodeAnalysis.Workspaces (3)
PatternMatching\AllLowerCamelCaseMatcher.cs (1)
238return GetKind(result, candidateHumps) == PatternMatchKind.CamelCaseExact;
PatternMatching\CamelCaseResult.cs (1)
58? PatternMatchKind.CamelCaseExact
PatternMatching\PatternMatchKind.cs (1)
112=> kind is PatternMatchKind.CamelCaseExact or PatternMatchKind.CamelCasePrefix or PatternMatchKind.CamelCaseNonContiguousPrefix or PatternMatchKind.CamelCaseSubstring;
Microsoft.VisualStudio.LanguageServices (1)
NavigateTo\RoslynNavigateToSearchCallback.cs (1)
96PatternMatching.PatternMatchKind.CamelCaseExact => PatternMatchKind.CamelCaseExact,