Home
last modified time | relevance | path

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

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php13 use Antlr\Antlr4\Runtime\CharStream; alias
121 public function match(CharStream $input, int $mode) : int
158 protected function matchATN(CharStream $input) : int
187 protected function execATN(CharStream $input, DFAState $ds0) : int
287 * @param CharStream $input The input stream
295 protected function computeTargetState(CharStream $input, DFAState $s, int $t) : DFAState
319 protected function failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int $t) : int
359 CharStream $input,
418 CharStream $input,
448 protected function computeStartState(CharStream
[all...]
H A DLexerActionExecutor.php9 use Antlr\Antlr4\Runtime\CharStream; alias
87 * {@see IntStream::seek()} on the input {@see CharStream} to set the input
147 * `input` {@see CharStream} prior to calling {@see LexerAction::execute()}
153 * @param CharStream $input The input stream which is the source for
164 public function execute(Lexer $lexer, CharStream $input, int $startIndex) : void
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php8 use Antlr\Antlr4\Runtime\CharStream; alias
28 public function __construct(Lexer $lexer, CharStream $input, int $startIndex, ATNConfigSet $deadEndConfigs)
46 if (!$input instanceof CharStream) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DCommonToken.php103 if ($source !== null && !$source->b instanceof CharStream) {
272 public function getInputStream() : ?CharStream
276 if ($stream !== null && !$stream instanceof CharStream) {
H A DCharStream.php10 interface CharStream extends IntStream interface
H A DTokenSource.php10 * is computed from a {@see CharStream}; it only store indices into
26 * {@see CharStream}). Do not fail/return upon lexing error; keep chewing
52 * Get the {@see CharStream} from which this token source is currently
55 * @return CharStream The {@see CharStream} associated with the current
H A DToken.php105 * Gets the {@see CharStream} from which this token was derived.
107 public function getInputStream() : ?CharStream;
H A DCommonTokenFactory.php20 * implementation of {@see CharStream::getText()} in
78 if (!$source->b instanceof CharStream) {
H A DLexer.php29 /** @var CharStream|null */
32 /** @var Pair Pair<TokenSource, CharStream> */
114 public function __construct(?CharStream $input = null)
296 if (!$input instanceof CharStream) {
297 throw new \RuntimeException('Input must be CharStream.');
H A DInputStream.php12 final class InputStream implements CharStream
/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlLexer.php11 use Antlr\Antlr4\Runtime\CharStream; alias
600 public function __construct(CharStream $input)