Home
last modified time | relevance | path

Searched refs:predIndex (Results 1 – 6 of 6) sorted by path

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php606 $this->log[] = \sprintf('EVAL rule %d:%d', $t->ruleIndex, $t->predIndex);
611 if ($this->evaluatePredicate($input, $t->ruleIndex, $t->predIndex, $speculative)) {
686 * @param int $predIndex The index of the predicate within the rule.
692 protected function evaluatePredicate(CharStream $input, int $ruleIndex, int $predIndex, bool $speculative) : bool argument
699 return $this->recog->sempred(null, $ruleIndex, $predIndex);
710 return $this->recog->sempred(null, $ruleIndex, $predIndex);
H A DParserATNSimulator.php2135 $pt->predIndex,
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DPredicate.php17 public $predIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\Predicate
22 public function __construct(int $ruleIndex = -1, int $predIndex = -1, bool $isCtxDependent = false) argument
25 $this->predIndex = $predIndex;
33 return $parser->sempred($localctx, $this->ruleIndex, $this->predIndex);
38 return Hasher::hash($this->ruleIndex, $this->predIndex, $this->isCtxDependent);
52 && $this->predIndex === $other->predIndex
58 return \sprintf('{%d:%d}?', $this->ruleIndex, $this->predIndex);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DPredicateTransition.php16 public $predIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PredicateTransition
25 public function __construct(ATNState $target, int $ruleIndex, int $predIndex, bool $isCtxDependent) argument
30 $this->predIndex = $predIndex;
41 return new Predicate($this->ruleIndex, $this->predIndex, $this->isCtxDependent);
65 && $this->predIndex === $other->predIndex
72 return \sprintf('pred_%d:%d', $this->ruleIndex, $this->predIndex);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DFailedPredicateException.php48 $this->predicateIndex = $trans->predIndex;
/plugin/zip/pear/File/
H A DArchive.php941 function predIndex($indexes) function in File_Archive