Home
last modified time | relevance | path

Searched refs:getReturnState (Results 1 – 6 of 6) sorted by last modified time

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php511 if ($config->context->getReturnState($i) !== PredictionContext::EMPTY_RETURN_STATE) {
513 $returnState = $this->atn->states[$config->context->getReturnState($i)];
H A DParserATNSimulator.php1637 if ($config->context->getReturnState($i) === PredictionContext::EMPTY_RETURN_STATE) {
1666 $returnState = $this->atn->states[$config->context->getReturnState($i)];
1920 $returnState = $this->atn->states[$config->context->getReturnState($i)];
1945 $returnStateNumber = $config->context->getReturnState($i);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLL1Analyzer.php224 $returnState = $this->atn->states[$context->getReturnState($i)];
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DArrayPredictionContext.php74 public function getReturnState(int $index) : int function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\ArrayPredictionContext
H A DPredictionContext.php41 * hash = {@see MurmurHash::update}(hash, {@see PredictionContext::getReturnState()});
110 return $this->getReturnState($this->getLength() - 1) === self::EMPTY_RETURN_STATE;
125 abstract public function getReturnState(int $index) : int; function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\PredictionContext
622 $updated = SingletonPredictionContext::create($parents[0], $context->getReturnState(0));
H A DSingletonPredictionContext.php55 public function getReturnState(int $index) : int function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\SingletonPredictionContext