10 references to GetState
System.Text.RegularExpressions (10)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (3)
312MatchingState<TSet> coreState = GetState(coreId); 316GetState(coreTargetId).Node : coreState.Next(_builder, minterm, nextCharKind); 341MatchingState<TSet> coreState = GetState(GetCoreStateId(nfaStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (5)
469nfaState.InitializeFrom(this, GetState(currentState.DfaStateId)); 482matchLength = endStateId > 0 ? GetState(endStateId).FixedLength(GetCharKind<TInputReader>(input, endPos)) : -1; 625nfaState.InitializeFrom(this, GetState(currentState.DfaStateId)); 751if (flags.IsNullable() || (flags.CanBeNullable() && GetState(coreStateId).IsNullableFor(GetCharKind<TInputReader>(input, i + 1)))) 773MatchingState<TSet> endState = GetState(GetCoreStateId(endStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Explore.cs (2)
67MatchingState<TSet>? coreState = args.Matcher.GetState(args.Matcher.GetCoreStateId(nfaId)); 85EnqueueIfUnseen(GetState(GetCoreStateId(nextNfaState)), seen, toExplore);