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