Home
last modified time | relevance | path

Searched refs:stopIndex (Results 1 – 7 of 7) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DProxyErrorListener.php51 int $stopIndex, argument
57 $listener->reportAmbiguity($recognizer, $dfa, $startIndex, $stopIndex, $exact, $ambigAlts, $configs);
65 int $stopIndex, argument
74 $stopIndex,
85 int $stopIndex, argument
90 $listener->reportContextSensitivity($recognizer, $dfa, $startIndex, $stopIndex, $prediction, $configs);
H A DDiagnosticErrorListener.php52 int $stopIndex, argument
67 $tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
77 int $stopIndex, argument
86 $tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
96 int $stopIndex, argument
105 $tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
H A DANTLRErrorListener.php34 int $stopIndex, argument
44 int $stopIndex, argument
53 int $stopIndex, argument
H A DBaseErrorListener.php35 int $stopIndex, argument
46 int $stopIndex, argument
56 int $stopIndex, argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerActionExecutor.php167 $stopIndex = $input->getIndex();
175 $requiresSeek = $startIndex + $offset !== $stopIndex;
177 $input->seek($stopIndex);
185 $input->seek($stopIndex);
H A DParserATNSimulator.php584 $stopIndex = $input->getIndex();
598 $this->reportAmbiguity($dfa, $D, $startIndex, $stopIndex, false, $alts, $D->configs);
2419 int $stopIndex argument
2422 $interval = new Interval($startIndex, $stopIndex);
2438 $stopIndex,
2450 int $stopIndex argument
2453 $interval = new Interval($startIndex, $stopIndex);
2469 $stopIndex,
2483 int $stopIndex, argument
2489 $interval = new Interval($startIndex, $stopIndex);
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php490 $stopIndex = $stop === null ? \count($this->tokens) - 1 : $stop->getTokenIndex();
492 return $this->getTextByInterval(new Interval($startIndex, $stopIndex));