Lines Matching refs:nextState
380 $nextState = $_states['GO'];
400 in_array($this->_states[$c][$nextState], $this->_terminal[$c])) {
401 list($c, $nextState, ) = array_pop($this->_stack);
404 if (in_array($this->_states[$c][$nextState], $this->_terminal[$c]) &&
473 while (array_key_exists($nextToken, $this->_actions[$c][$nextState]) &&
476 is_array($this->_actions[$c][$nextState][$nextToken]) &&
477 0 < $foo = $this->_actions[$c][$nextState][$nextToken][0]
480 is_int($this->_actions[$c][$nextState][$nextToken]) &&
481 0 < $foo = $this->_actions[$c][$nextState][$nextToken]
491 $this->_stack[$d] = [$c, $nextState, $nextToken];
498 $nextState = $_states['GO'];
569 if (is_array($this->_actions[$c][$nextState][$nextToken])) {
570 $nextAction = $this->_actions[$c][$nextState][$nextToken][1];
572 $nextAction = $this->_actions[$c][$nextState][$nextToken];
574 $nextState = $_states[$this->_transitions[$c][$nextState][$nextToken]];
578 if (false === $nextToken || $nextState === $_states['__']) {
583 if ((in_array($this->_states[$c][$nextState], $this->_terminal[$c]) &&
585 ($nextState === $_states['__'] &&
590 list($c, $nextState, $nextToken) = $pop;