9 references to MapCaptureNumber
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\RegexCompiler.cs (4)
1855
int capnum = RegexParser.
MapCaptureNumber
(node.M, _regexTree!.CaptureNumberSparseMapping);
2037
int capnum = RegexParser.
MapCaptureNumber
(node.M, _regexTree!.CaptureNumberSparseMapping);
2390
int capnum = RegexParser.
MapCaptureNumber
(node.M, _regexTree!.CaptureNumberSparseMapping);
2391
int uncapnum = RegexParser.
MapCaptureNumber
(node.N, _regexTree.CaptureNumberSparseMapping);
System\Text\RegularExpressions\RegexWriter.cs (4)
254
Emit(RegexOpcode.TestBackreference, RegexParser.
MapCaptureNumber
(node.M, _tree.CaptureNumberSparseMapping));
348
Emit(RegexOpcode.Capturemark, RegexParser.
MapCaptureNumber
(node.M, _tree.CaptureNumberSparseMapping), RegexParser.
MapCaptureNumber
(node.N, _tree.CaptureNumberSparseMapping));
428
Emit((RegexOpcode)node.Kind | bits, RegexParser.
MapCaptureNumber
(node.M, _tree.CaptureNumberSparseMapping));
System\Text\RegularExpressions\Symbolic\RegexNodeConverter.cs (1)
272
int captureNum = RegexParser.
MapCaptureNumber
(node.M, _captureSparseMapping);