Home
last modified time | relevance | path

Searched refs:IntStream (Results 1 – 11 of 11) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntStream.php17 * @see IntStream::LA()
18 * @see IntStream::consume()
19 * @see IntStream::size()
21 interface IntStream interface
147 * @see IntStream::mark
H A DTokenStream.php10 interface TokenStream extends IntStream
19 * @see IntStream::LA()
H A DCharStream.php10 interface CharStream extends IntStream
H A DRecognizer.php218 abstract public function getInputStream() : ?IntStream;
219 abstract public function setInputStream(IntStream $input) : void;
H A DTokenSource.php59 public function getInputStream() : ?IntStream;
H A DToken.php24 public const EOF = IntStream::EOF;
H A DLexer.php274 public function getInputStream() : ?IntStream
289 public function setInputStream(IntStream $input) : void
H A DParser.php423 public function getInputStream() : ?IntStream
428 final public function setInputStream(IntStream $input) : void
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DRecognitionException.php8 use Antlr\Antlr4\Runtime\IntStream; alias
33 /** @var IntStream|null */
50 ?IntStream $input,
130 * @return IntStream|null The input stream which is the symbol source for
134 public function getInputStream() : ?IntStream
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php26 use Antlr\Antlr4\Runtime\IntStream; alias
606 if ($t !== IntStream::EOF) {
843 if ($t !== IntStream::EOF) {
926 if ($fullCtx || $t === IntStream::EOF) {
994 if ($t === IntStream::EOF) {
H A DLexerATNSimulator.php17 use Antlr\Antlr4\Runtime\IntStream; alias
343 if ($t === IntStream::EOF && $input->getIndex() === $this->startIndex) {