11 references to UseOptionR
System (11)
regex\system\text\regularexpressions\Regex.cs (11)
541return UseOptionR(); 767return IsMatch(input, UseOptionR() ? input.Length : 0); 841return Match(input, UseOptionR() ? input.Length : 0); 874return Run(false, -1, input, beginning, length, UseOptionR() ? beginning + length : beginning); 928return Matches(input, UseOptionR() ? input.Length : 0); 1001return Replace(input, replacement, -1, UseOptionR() ? input.Length : 0); 1018return Replace(input, replacement, count, UseOptionR() ? input.Length : 0); 1101return Replace(input, evaluator, -1, UseOptionR() ? input.Length : 0); 1119return Replace(input, evaluator, count, UseOptionR() ? input.Length : 0); 1189return Split(input, 0, UseOptionR() ? input.Length : 0); 1206return RegexReplacement.Split(this, input, count, UseOptionR() ? input.Length : 0);