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.php11 * For more information on marked ranges, see {@see IntStream::mark()}.
17 * @see IntStream::LA()
18 * @see IntStream::consume()
19 * @see IntStream::size()
21 interface IntStream interface
24 * The value returned by {@see IntStream::LA()} when the end of the stream is
36 * The value returned by {@see IntStream::getSourceName()} when the actual
45 * - Forward movement: The value of {@see IntStream::index()} before calling
69 * - `i === -1` and {@see IntStream::index index()} returns a value greater
80 * this method returns {@see IntStream
[all...]
H A DTokenStream.php8 * An {@see IntStream} whose symbols are {@see Token} instances.
10 interface TokenStream extends IntStream
15 * as {@see IntStream::LA()}. In addition, when the preconditions
19 * @see IntStream::LA()
28 * of {@see IntStream::seek()}. If the behavior of {@see TokenStream::seek()}
67 * to {@see IntStream::size()} and {@see TokenStream::getText()}, but may
H A DCharStream.php10 interface CharStream extends IntStream
16 * information about marked ranges, see {@see IntStream::mark()}.
H A DTokenSource.php59 public function getInputStream() : ?IntStream;
64 * returns {@see IntStream::UNKNOWN_SOURCE_NAME}.
H A DRecognizer.php218 abstract public function getInputStream() : ?IntStream;
219 abstract public function setInputStream(IntStream $input) : void;
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) {