Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php19 private $startIndex; variable in Antlr\\Antlr4\\Runtime\\Error\\Exceptions\\LexerNoViableAltException
28 …public function __construct(Lexer $lexer, CharStream $input, int $startIndex, ATNConfigSet $deadEn… argument
32 $this->startIndex = $startIndex;
50 if ($input !== null && $this->startIndex >= 0 && $this->startIndex < $input->getLength()) {
51 $symbol = $input->getText($this->startIndex, $this->startIndex);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DProxyErrorListener.php50 int $startIndex, argument
57 …$listener->reportAmbiguity($recognizer, $dfa, $startIndex, $stopIndex, $exact, $ambigAlts, $config…
64 int $startIndex, argument
73 $startIndex,
84 int $startIndex, argument
90 …$listener->reportContextSensitivity($recognizer, $dfa, $startIndex, $stopIndex, $prediction, $conf…
H A DDiagnosticErrorListener.php51 int $startIndex, argument
67 …$tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
76 int $startIndex, argument
86 …$tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
95 int $startIndex, argument
105 …$tokenStream === null ? '' : $tokenStream->getTextByInterval(new Interval($startIndex, $stopIndex))
H A DANTLRErrorListener.php33 int $startIndex, argument
43 int $startIndex, argument
52 int $startIndex, argument
H A DBaseErrorListener.php34 int $startIndex, argument
45 int $startIndex, argument
55 int $startIndex, argument
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php286 protected $startIndex = 0; variable in Antlr\\Antlr4\\Runtime\\Atn\\ParserATNSimulator
339 $this->startIndex = $input->getIndex();
346 $index = $this->startIndex;
458 int $startIndex, argument
504 $e = $this->noViableAlt($input, $outerContext, $previousD->configs, $startIndex);
506 $input->seek($startIndex);
532 if ($conflictIndex !== $startIndex) {
533 $input->seek($startIndex);
546 if ($conflictIndex !== $startIndex) {
572 $startIndex,
[all …]
H A DLexerActionExecutor.php159 * @param int $startIndex The token start index. This value may be
164 public function execute(Lexer $lexer, CharStream $input, int $startIndex) : void argument
173 $input->seek($startIndex + $offset);
175 $requiresSeek = $startIndex + $offset !== $stopIndex;
H A DLexerATNSimulator.php48 protected $startIndex = -1; variable in Antlr\\Antlr4\\Runtime\\Atn\\LexerATNSimulator
98 $this->startIndex = $simulator->startIndex;
135 $this->startIndex = $input->getIndex();
152 $this->startIndex = -1;
333 $this->startIndex,
343 if ($t === IntStream::EOF && $input->getIndex() === $this->startIndex) {
351 throw new LexerNoViableAltException($this->recog, $input, $this->startIndex, $reach);
394 … $lexerExecutor = $lexerExecutor->fixOffsetBeforeMatch($input->getIndex() - $this->startIndex);
420 int $startIndex, argument
435 $lexerActionExecutor->execute($this->recog, $input, $startIndex);
[all …]
/template/parallax/lib/js/
Dgallery-lightbox.js22 var startIndex = source.lastIndexOf('-');
24 var removeValue = source.substring(startIndex, endIndex);
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTokenizer.php324 $startIndex = strpos($text, '=', $index) + 1;
330 trim(substr($text, $startIndex, $closeIndex - $startIndex))
/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php489 $startIndex = $start === null ? 0 : $start->getTokenIndex();
492 return $this->getTextByInterval(new Interval($startIndex, $stopIndex));