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
)
504
innerLoopLength =
_checkTimeout
&& lengthMinus1 - pos > DfaCharsPerTimeoutCheck ? pos + DfaCharsPerTimeoutCheck : lengthMinus1;
513
innerLoopLength =
_checkTimeout
&& input.Length - pos > NfaCharsPerTimeoutCheck ? pos + NfaCharsPerTimeoutCheck : input.Length;
539
if (
_checkTimeout
)
579
innerLoopLength =
_checkTimeout
&& input.Length - pos > DfaCharsPerTimeoutCheck ? pos + DfaCharsPerTimeoutCheck : input.Length;
587
innerLoopLength =
_checkTimeout
&& input.Length - pos > NfaCharsPerTimeoutCheck ? pos + NfaCharsPerTimeoutCheck : input.Length;
612
if (
_checkTimeout
)