1 write to _checkTimeout
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
175
_checkTimeout
= Regex.InfiniteMatchTimeout != matchTimeout;
9 references to _checkTimeout
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (9)
78
/// <summary>Timeout in milliseconds. This is only used if <see cref="
_checkTimeout
"/> is true.</summary>
340
Debug.Assert(
_checkTimeout
);
361
if (
_checkTimeout
)
506
innerLoopLength =
_checkTimeout
&& lengthMinus1 - pos > DfaCharsPerTimeoutCheck ? pos + DfaCharsPerTimeoutCheck : lengthMinus1;
515
innerLoopLength =
_checkTimeout
&& input.Length - pos > NfaCharsPerTimeoutCheck ? pos + NfaCharsPerTimeoutCheck : input.Length;
541
if (
_checkTimeout
)
581
innerLoopLength =
_checkTimeout
&& input.Length - pos > DfaCharsPerTimeoutCheck ? pos + DfaCharsPerTimeoutCheck : input.Length;
589
innerLoopLength =
_checkTimeout
&& input.Length - pos > NfaCharsPerTimeoutCheck ? pos + NfaCharsPerTimeoutCheck : input.Length;
614
if (
_checkTimeout
)