5 references to Category
System.Text.RegularExpressions.Generator (5)
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexParser.cs (5)
2139private static bool IsSpecial(char ch) => ch <= '|' && Category[ch] >= S; 2142private static bool IsSpecialOrSpace(char ch) => ch <= '|' && Category[ch] >= W; 2145private static bool IsQuantifier(char ch) => ch <= '{' && Category[ch] == Q; 2148private static bool IsSpace(char ch) => ch <= ' ' && Category[ch] == W; 2158return ch <= '{' && Category[ch] >= Q;