11 references to GetCoreStateId
System.Text.RegularExpressions (11)
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 (6)
1057
int coreStateId =
GetCoreStateId
(targetStateId);
1083
MatchingState<TSet> endState = GetState(
GetCoreStateId
(endStateId));
1316
if (matcher.GetState(matcher.
GetCoreStateId
(nfaState.Key)).StartsWithLineAnchor)
1330
if (matcher.GetState(matcher.
GetCoreStateId
(nfaState.Key)).IsNullableFor(nextCharKind))
1382
int coreStateId = matcher.
GetCoreStateId
(sourceState.Key);
1429
flags |= matcher._stateFlagsArray[matcher.
GetCoreStateId
(nfaState.Key)];
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);