8 references to Setmark
System.Text.RegularExpressions (8)
System\Text\RegularExpressions\RegexInterpreterCode.cs (2)
43RegexOpcode.Setmark or 73case RegexOpcode.Setmark:
System\Text\RegularExpressions\RegexOpcode.cs (2)
132/// When executed, this opcode pops a previously saved input mark (from a <see cref="Setmark"/> or <see cref="Nullmark"/>) 210/// This opcode restores the input position from a marker saved on the grouping stack (typically via a <see cref="Setmark"/> or
System\Text\RegularExpressions\RegexWriter.cs (4)
283Emit(RegexOpcode.Setmark); 317Emit(node.M == 0 ? RegexOpcode.Nullmark : RegexOpcode.Setmark); 344Emit(RegexOpcode.Setmark); 353Emit(RegexOpcode.Setmark);