Lines Matching refs:DFAState
15 use Antlr\Antlr4\Runtime\Dfa\DFAState; alias
187 protected function execATN(CharStream $input, DFAState $ds0) : int
261 * @param DFAState $s The current DFA state
264 * @return DFAState|null The existing target DFA state for the given input symbol
268 protected function getExistingTargetState(DFAState $s, int $t) : ?DFAState
288 * @param DFAState $s The current DFA state
291 * @return DFAState The computed target DFA state for the given input symbol
295 protected function computeTargetState(CharStream $input, DFAState $s, int $t) : DFAState
719 …protected function captureSimState(SimState $settings, CharStream $input, DFAState $dfaState) : vo…
727 …protected function addDFAEdgeATNConfigSet(DFAState $from, int $t, ATNConfigSet $configs) : DFAState
754 protected function addDFAEdge(DFAState $from, int $t, ?DFAState $to) : void
780 protected function addDFAState(ATNConfigSet $configs) : DFAState
786 $proposed = new DFAState($configs);
815 if ($existing !== null && $existing instanceof DFAState) {