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)"/>. 398int coreId = GetCoreStateId(nfaStateId); 430MatchingState<TSet> coreState = GetState(GetCoreStateId(nfaStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (2)
1057int coreStateId = GetCoreStateId(targetStateId); 1083MatchingState<TSet> endState = GetState(GetCoreStateId(endStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Explore.cs (2)
73MatchingState<TSet>? coreState = args.Matcher.GetState(args.Matcher.GetCoreStateId(nfaId)); 91EnqueueIfUnseen(GetState(GetCoreStateId(nextNfaState)), seen, toExplore);