7 references to GetSetChars
System.Text.RegularExpressions.Generator (7)
RegexGenerator.Emitter.cs (2)
1711(numChars = RegexCharClass.GetSetChars(startingLiteralNode.Str!, setChars)) == 0) 1778int numChars = RegexCharClass.GetSetChars(startingLiteralNode.Str!, setChars);
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCharClass.cs (1)
1066GetSetChars(set, twoChars) == 2 &&
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexFindOptimizations.cs (1)
101(scratchCount = RegexCharClass.GetSetChars(charClass, scratch)) > 0)
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexNode.cs (1)
1451if ((numChars = RegexCharClass.GetSetChars(node.Str!, setChars)) != 0)
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexPrefixAnalyzer.cs (2)
158int charCount = RegexCharClass.GetSetChars(node.Str!, setChars); 1212chars = chars.Slice(0, RegexCharClass.GetSetChars(nextChild.Str!, chars));