Lines Matching refs:_states
146 protected $_states = []; variable in Hoa\\Compiler\\Ll1
375 $_states = array_flip($this->_states[$c]);
380 $nextState = $_states['GO'];
381 $nextAction = $_states['GO'];
400 in_array($this->_states[$c][$nextState], $this->_terminal[$c])) {
404 if (in_array($this->_states[$c][$nextState], $this->_terminal[$c]) &&
496 $_states = array_flip($this->_states[$c]);
498 $nextState = $_states['GO'];
499 $nextAction = $_states['GO'];
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['__'] &&
596 $_states = array_flip($this->_states[$c]);
741 $old = $this->_states;
742 $this->_states = $states;
850 return $this->_states;
952 foreach ($this->_states[$e] as $i => $state) {
987 if (__ != $this->_states[$e][$i]
997 ' "' . $e . '_' . $this->_states[$e][$i] .