6 references to StartsWithLineAnchor
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (2)
116if (state.StartsWithLineAnchor) 135if (state.StartsWithLineAnchor)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (2)
949public static bool StartsWithLineAnchor(SymbolicRegexMatcher<TSet> matcher, in CurrentState state) => matcher.GetState(state.DfaStateId).StartsWithLineAnchor; 1013if (matcher.GetState(matcher.GetCoreStateId(nfaState.Key)).StartsWithLineAnchor)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Explore.cs (2)
39int maxMinterm = state.StartsWithLineAnchor ? _minterms!.Length : _minterms!.Length - 1; 77int maxMinterm = state.StartsWithLineAnchor ? _minterms.Length : _minterms.Length - 1;