32 references to Multiline
aspire (7)
Certificates\CertificateGeneration\MacOSCertificateManager.cs (1)
298
var matches = Regex.Matches(output, MacOSFindCertificateOutputRegex, RegexOptions.
Multiline
, maxRegexTimeout);
Utils\MarkdownToSpectreConverter.cs (6)
236
[GeneratedRegex(@"^###### (.+?)\s*$", RegexOptions.
Multiline
)]
239
[GeneratedRegex(@"^##### (.+?)\s*$", RegexOptions.
Multiline
)]
242
[GeneratedRegex(@"^#### (.+?)\s*$", RegexOptions.
Multiline
)]
245
[GeneratedRegex(@"^### (.+?)\s*$", RegexOptions.
Multiline
)]
248
[GeneratedRegex(@"^## (.+?)\s*$", RegexOptions.
Multiline
)]
251
[GeneratedRegex(@"^# (.+?)\s*$", RegexOptions.
Multiline
)]
dotnet-dev-certs (1)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
298
var matches = Regex.Matches(output, MacOSFindCertificateOutputRegex, RegexOptions.
Multiline
, MaxRegexTimeout);
Microsoft.AspNetCore.DeveloperCertificates.XPlat (1)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
298
var matches = Regex.Matches(output, MacOSFindCertificateOutputRegex, RegexOptions.
Multiline
, MaxRegexTimeout);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
298
var matches = Regex.Matches(output, MacOSFindCertificateOutputRegex, RegexOptions.
Multiline
, MaxRegexTimeout);
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\RegularExpressions\RegexParser.cs (1)
1232
case 'm': case 'M': return RegexOptions.
Multiline
;
QuarantineTools.Tests (6)
ActiveIssueTests.cs (2)
184
Assert.DoesNotMatch(new Regex(@"\[Fact\]\n\s*\n\s*\[ActiveIssue", RegexOptions.
Multiline
), norm);
186
Assert.Matches(new Regex(@"\[Fact\]\n\s+\[ActiveIssue\(""https://github.com/microsoft/aspire/issues/99""\)\]", RegexOptions.
Multiline
), norm);
QuarantineScriptTests.cs (4)
196
var rx1 = new Regex(@"\[QuarantinedTest\(""https://github.com/microsoft/aspire/issues/11""\)\]\n\s*public void M1\(\)", RegexOptions.
Multiline
);
197
var rx2 = new Regex(@"\[QuarantinedTest\(""https://github.com/microsoft/aspire/issues/11""\)\]\n\s*public void M2\(\)", RegexOptions.
Multiline
);
217
Assert.DoesNotMatch(new Regex(@"\[Fact\]\n\s*\n\s*\[QuarantinedTest", RegexOptions.
Multiline
), norm);
219
Assert.Matches(new Regex(@"\[Fact\]\n\s+\[QuarantinedTest\(""https://github.com/microsoft/aspire/issues/99""\)\]", RegexOptions.
Multiline
), norm);
RepoTasks (1)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
298
var matches = Regex.Matches(output, MacOSFindCertificateOutputRegex, RegexOptions.
Multiline
, MaxRegexTimeout);
System.Text.RegularExpressions (14)
System\Text\RegularExpressions\Regex.cs (1)
212
((options & RegexOptions.ECMAScript) != 0 && (options & ~(RegexOptions.ECMAScript | RegexOptions.IgnoreCase | RegexOptions.
Multiline
| RegexOptions.Compiled | RegexOptions.CultureInvariant)) != 0) ||
System\Text\RegularExpressions\RegexNode.cs (1)
3500
if ((Options & RegexOptions.
Multiline
) != 0) sb.Append("-M");
System\Text\RegularExpressions\RegexNodeKind.cs (4)
80
/// <summary>A beginning-of-line anchor, e.g. `^` in <see cref="RegexOptions.
Multiline
"/> mode.</summary>
82
/// <summary>An end-of-line anchor, e.g. `$` in <see cref="RegexOptions.
Multiline
"/> mode.</summary>
92
/// <summary>A beginning-of-string anchor, e.g. `\A`, or `^` when not in <see cref="RegexOptions.
Multiline
"/> mode.</summary>
96
/// <summary>A end-of-string-or-before-ending-newline anchor, e.g. `\Z`, or `$` when not in <see cref="RegexOptions.
Multiline
"/> mode.</summary>
System\Text\RegularExpressions\RegexOptions.cs (2)
11
/// <see cref="RegexOptions.
Multiline
"/>, and <see cref="RegexOptions.Singleline"/>) can instead be
103
/// conjunction with the <see cref="IgnoreCase"/>, <see cref="
Multiline
"/>, and
System\Text\RegularExpressions\RegexParser.cs (6)
394
if ((_options & (RegexOptions.AnyNewLine | RegexOptions.
Multiline
)) == (RegexOptions.AnyNewLine | RegexOptions.
Multiline
))
400
_unit = new RegexNode((_options & RegexOptions.
Multiline
) != 0 ? RegexNodeKind.Bol : RegexNodeKind.Beginning, _options);
407
_unit = (_options & RegexOptions.
Multiline
) != 0 ? AnyNewLineEolNode() : AnyNewLineEndZNode();
411
_unit = new RegexNode((_options & RegexOptions.
Multiline
) != 0 ? RegexNodeKind.Eol : RegexNodeKind.EndZ, _options);
1625
'm' => RegexOptions.
Multiline
,