1 write to IsCaseSensitive
Microsoft.CodeAnalysis.Workspaces (1)
PatternMatching\PatternMatch.cs (1)
54this.IsCaseSensitive = isCaseSensitive;
8 references to IsCaseSensitive
Microsoft.CodeAnalysis.Features (2)
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (2)
206var isCaseSensitive = nameMatches.All(m => m.IsCaseSensitive) && containerMatches.All(m => m.IsCaseSensitive);
Microsoft.CodeAnalysis.Workspaces (6)
PatternMatching\PatternMatch.cs (5)
60=> new(Kind, _punctuationStripped, IsCaseSensitive, matchedSpans); 75switch (this.IsCaseSensitive, this.Kind.IsCamelCaseKind(), other.IsCaseSensitive, other.Kind.IsCamelCaseKind()) 92switch (this.IsCaseSensitive, other.IsCaseSensitive)
PatternMatching\PatternMatcher.cs (1)
212if (match is { IsCaseSensitive: true })