34 references to CamelCaseExact
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (14)
Utilities\PatternMatcherTests.cs (14)
159
[InlineData("[|F|]og[|B|]ar", "FB", PatternMatchKind.
CamelCaseExact
, CaseSensitive)]
160
[InlineData("[|Fo|]g[|B|]ar", "FoB", PatternMatchKind.
CamelCaseExact
, CaseSensitive)]
161
[InlineData("[|_f|]og[|B|]ar", "_fB", PatternMatchKind.
CamelCaseExact
, CaseSensitive)]
162
[InlineData("[|F|]og[|_B|]ar", "F_B", PatternMatchKind.
CamelCaseExact
, CaseSensitive)]
163
[InlineData("[|F|]og[|B|]ar", "fB", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
173
[InlineData("[|F|]og[|_B|]ar", "F_b", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
174
[InlineData("[|_F|]og[|B|]ar", "_fB", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
175
[InlineData("[|F|]og[|_B|]ar", "f_B", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
177
[InlineData("[|Si|]mple[|UI|]Element", "SiUI", PatternMatchKind.
CamelCaseExact
, CaseSensitive)]
181
[InlineData("[|Co|]de[|Fi|]x[|Pro|]vider", "cofipro", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
186
[InlineData("[|C|]ore[|Ofi|]lac[|Pro|]fessional", "cofipro", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
187
[InlineData("[|C|]lear[|Ofi|]lac[|Pro|]fessional", "cofipro", PatternMatchKind.
CamelCaseExact
, CaseInsensitive)]
196
[InlineData("[|C|]reate[|R|]ange", "CR", PatternMatchKind.
CamelCaseExact
, CaseSensitive)]
335
AssertContainsType(PatternMatchKind.
CamelCaseExact
, match);
Microsoft.CodeAnalysis.Features (2)
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (1)
32
(PatternMatchKind.
CamelCaseExact
, NavigateToMatchKind.CamelCaseExact),
NavigateTo\INavigateToSearchResult.cs (1)
50
NavigateToMatchKind.CamelCaseExact => PatternMatchKind.
CamelCaseExact
,
Microsoft.CodeAnalysis.Workspaces (3)
PatternMatching\AllLowerCamelCaseMatcher.cs (1)
238
return 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.CodeAnalysis.Workspaces.UnitTests (14)
FindSymbols\NavigateToSearchIndexTests.cs (14)
842
[InlineData("GooBar", "", "GB", null, PatternMatchKind.
CamelCaseExact
)]
843
[InlineData("GooBar", "", "GoBa", null, PatternMatchKind.
CamelCaseExact
)]
844
[InlineData("GooBarQuux", "", "GBQ", null, PatternMatchKind.
CamelCaseExact
)]
845
[InlineData("GooBarQuux", "", "GoBarQu", null, PatternMatchKind.
CamelCaseExact
)]
846
[InlineData("NonEmptyList", "", "NEL", null, PatternMatchKind.
CamelCaseExact
)]
847
[InlineData("CodeFixProvider", "", "CFP", null, PatternMatchKind.
CamelCaseExact
)]
848
[InlineData("XMLDocument", "", "XD", null, PatternMatchKind.
CamelCaseExact
)]
850
[InlineData("GooBar", "", "gb", null, PatternMatchKind.
CamelCaseExact
)]
851
[InlineData("GooBar", "", "goba", null, PatternMatchKind.
CamelCaseExact
)]
852
[InlineData("GooBarQuux", "", "gbq", null, PatternMatchKind.
CamelCaseExact
)]
853
[InlineData("NonEmptyList", "", "nel", null, PatternMatchKind.
CamelCaseExact
)]
854
[InlineData("NonEmptyList", "", "neli", null, PatternMatchKind.
CamelCaseExact
)]
855
[InlineData("CodeFixProvider", "", "cofipro", null, PatternMatchKind.
CamelCaseExact
)]
893
[InlineData("BazQuux", "GooBar", "BQ", "GB", PatternMatchKind.
CamelCaseExact
)]
Microsoft.VisualStudio.LanguageServices (1)
NavigateTo\RoslynNavigateToSearchCallback.cs (1)
102
PatternMatching.PatternMatchKind.
CamelCaseExact
=> PatternMatchKind.CamelCaseExact,