9 references to Singleline
System.Text.RegularExpressions.Generator (9)
RegexGenerator.Parser.cs (1)
189
RegexOptions.
Singleline
|
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexNode.cs (1)
3501
if ((Options & RegexOptions.
Singleline
) != 0) sb.Append("-S");
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexNodeKind.cs (4)
18
/// <summary>Anything other than a specific character, e.g. `.` when not in <see cref="RegexOptions.
Singleline
"/> mode, or `[^a]`.</summary>
35
/// <summary>A loop around anything other than a specific character, e.g. `.*` when not in <see cref="RegexOptions.
Singleline
"/> mode, or `[^a]*`.</summary>
48
/// <summary>A lazy loop around anything other than a specific character, e.g. `.*?` when not in <see cref="RegexOptions.
Singleline
"/> mode, or `[^a]*?`.</summary>
63
/// <summary>An atomic loop around anything other than a specific character, e.g. `(?>.*)` when not in <see cref="RegexOptions.
Singleline
"/> mode.</summary>
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexOptions.cs (1)
11
/// <see cref="RegexOptions.Multiline"/>, and <see cref="RegexOptions.
Singleline
"/>) can instead be
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexParser.cs (2)
416
if ((_options & RegexOptions.
Singleline
) != 0)
1627
's' => RegexOptions.
Singleline
,