Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/
DIntStream.php17 * @see IntStream::LA()
18 * @see IntStream::consume()
19 * @see IntStream::size()
21 interface IntStream interface
147 * @see IntStream::mark
DTokenStream.php10 interface TokenStream extends IntStream
19 * @see IntStream::LA()
DCharStream.php10 interface CharStream extends IntStream
DRecognizer.php218 abstract public function getInputStream() : ?IntStream;
219 abstract public function setInputStream(IntStream $input) : void;
DTokenSource.php59 public function getInputStream() : ?IntStream;
DToken.php24 public const EOF = IntStream::EOF;
DLexer.php274 public function getInputStream() : ?IntStream
289 public function setInputStream(IntStream $input) : void
DParser.php423 public function getInputStream() : ?IntStream
428 final public function setInputStream(IntStream $input) : void
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
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
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
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) {
DLexerATNSimulator.php17 use Antlr\Antlr4\Runtime\IntStream; alias
343 if ($t === IntStream::EOF && $input->getIndex() === $this->startIndex) {