6 references to SymbolicMatch
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Symbolic\SymbolicMatch.cs (2)
9internal static SymbolicMatch NoMatch => new SymbolicMatch(-1, -1); 12internal static SymbolicMatch MatchExists => new SymbolicMatch(0, 0);
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (3)
354public SymbolicMatch FindMatch(RegexRunnerMode mode, ReadOnlySpan<char> input, int startat, PerThreadData perThreadData) 399return SymbolicMatch.NoMatch; 406return SymbolicMatch.MatchExists;
System\Text\RegularExpressions\Symbolic\SymbolicRegexRunnerFactory.cs (1)
76SymbolicMatch pos = _matcher.FindMatch(_mode, text, runtextpos, _perThreadData);