7 references to GetCoreStateId
System.Text.RegularExpressions (7)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (3)
290
/// The core state ID can be looked up by the NFA ID with <see cref="
GetCoreStateId
(int)"/>.
398
int coreId =
GetCoreStateId
(nfaStateId);
430
MatchingState<TSet> coreState = GetState(
GetCoreStateId
(nfaStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (2)
1057
int coreStateId =
GetCoreStateId
(targetStateId);
1083
MatchingState<TSet> endState = GetState(
GetCoreStateId
(endStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Explore.cs (2)
73
MatchingState<TSet>? coreState = args.Matcher.GetState(args.Matcher.
GetCoreStateId
(nfaId));
91
EnqueueIfUnseen(GetState(
GetCoreStateId
(nextNfaState)), seen, toExplore);