Home
last modified time | relevance | path

Searched refs:ruleIndex (Results 1 – 20 of 20) sorted by last modified time

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php490 $this->recog->getRuleNames()[$config->state->ruleIndex],
606 $this->log[] = \sprintf('EVAL rule %d:%d', $t->ruleIndex, $t->predIndex);
611 if ($this->evaluatePredicate($input, $t->ruleIndex, $t->predIndex, $speculative)) {
685 * @param int $ruleIndex The rule containing the predicate.
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);
806 $prediction = $this->atn->ruleToTokenType[$firstConfigWithRuleStopState->state->ruleIndex];
H A DParserATNSimulator.php1084 $endOfRuleState = $this->atn->ruleToStopState[$config->state->ruleIndex];
1648 $this->getRuleName($config->state->ruleIndex)
1700 $this->log[] = \sprintf('FALLING off rule %s.', $this->getRuleName($config->state->ruleIndex));
1755 && $t->getOutermostPrecedenceReturn() === $this->dfa->atnStartState->ruleIndex) {
1922 if ($returnState->ruleIndex !== $p->ruleIndex) {
2059 $this->log[] = \sprintf('ACTION edge %d:%d', $t->ruleIndex, $t->actionIndex);
2134 $pt->ruleIndex,
2189 $this->getRuleName($t->target->ruleIndex),
H A DATNDeserializer.php243 $ruleIndex = $this->readInt();
245 if ($ruleIndex === 0xFFFF) {
246 $ruleIndex = -1;
249 $s = $this->stateFactory($stype, $ruleIndex);
343 $atn->ruleToStopState[$state->ruleIndex] = $state;
344 $atn->ruleToStartState[$state->ruleIndex]->stopState = $state;
416 if ($atn->ruleToStartState[$t->target->ruleIndex]->isLeftRecursiveRule) {
418 $outermostPrecedenceReturn = $t->target->ruleIndex;
423 $atn->ruleToStopState[$t->target->ruleIndex]->addTransition($trans);
519 $bypassStart->ruleIndex
819 stateFactory(int $type, int $ruleIndex) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DPredicate.php14 public $ruleIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\Predicate
22 public function __construct(int $ruleIndex = -1, int $predIndex = -1, bool $isCtxDependent = false) argument
24 $this->ruleIndex = $ruleIndex;
33 return $parser->sempred($localctx, $this->ruleIndex, $this->predIndex);
38 return Hasher::hash($this->ruleIndex, $this->predIndex, $this->isCtxDependent);
51 return $this->ruleIndex === $other->ruleIndex
58 return \sprintf('{%d:%d}?', $this->ruleIndex, $this->predIndex);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DActionTransition.php12 public $ruleIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition
24 public function __construct(ATNState $target, int $ruleIndex, int $actionIndex = -1, bool $isCtxDependent = false) argument
28 $this->ruleIndex = $ruleIndex;
61 return $this->ruleIndex === $other->ruleIndex
69 return \sprintf('action_%d:%d', $this->ruleIndex, $this->actionIndex);
H A DPredicateTransition.php13 public $ruleIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PredicateTransition
25 public function __construct(ATNState $target, int $ruleIndex, int $predIndex, bool $isCtxDependent) argument
29 $this->ruleIndex = $ruleIndex;
41 return new Predicate($this->ruleIndex, $this->predIndex, $this->isCtxDependent);
64 && $this->ruleIndex === $other->ruleIndex
72 return \sprintf('pred_%d:%d', $this->ruleIndex, $this->predIndex);
H A DRuleTransition.php18 public $ruleIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RuleTransition
30 public function __construct(RuleStartState $ruleStart, int $ruleIndex, int $precedence, ATNState $followState) argument
34 $this->ruleIndex = $ruleIndex;
64 && $this->ruleIndex === $other->ruleIndex
71 return \sprintf('rule_%d:%d,%s', $this->ruleIndex, $this->precedence, $this->followState);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTrees.php56 $ruleIndex = $tree->getRuleContext()->getRuleIndex();
57 $ruleName = $ruleNames[$ruleIndex];
132 public static function findAllRuleNodes(ParseTree $tree, int $ruleIndex) : array argument
134 return self::findAllNodes($tree, $ruleIndex, false);
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.4.js7091 },insertRule:function(styleSheet,cssText,ruleIndex){if(FBTrace.DBG_CSS){FBTrace.sysout("Insert: "+ruleIndex+" "+cssText) argument
7092 }var insertIndex=styleSheet.insertRule(cssText,ruleIndex);
7093 dispatch(this.fbListeners,"onCSSInsertRule",[styleSheet,cssText,ruleIndex]);
7095 },deleteRule:function(styleSheet,ruleIndex){if(FBTrace.DBG_CSS){FBTrace.sysout("deleteRule: "+ruleIndex+" "+styleSheet.cssRules.length,styleSheet.cssRules) argument
7096 }dispatch(this.fbListeners,"onCSSDeleteRule",[styleSheet,ruleIndex]);
7097 styleSheet.deleteRule(ruleIndex)
7559 var ruleIndex=cssRules.length;
7561 for(ruleIndex
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerCustomAction.php25 private $ruleIndex; variable in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerCustomAction
34 * @param int $ruleIndex The rule index to use for calls to
39 public function __construct(int $ruleIndex, int $actionIndex) argument
41 $this->ruleIndex = $ruleIndex;
52 return $this->ruleIndex;
99 $lexer->action(null, $this->ruleIndex, $this->actionIndex);
104 return Hasher::hash($this->getActionType(), $this->ruleIndex, $this->actionIndex);
117 return $this->ruleIndex === $other->ruleIndex
[all...]
/plugin/combo/ComboStrap/
H A DPageSqlTreeListener.php313 $ruleIndex = $ctx->getRuleIndex();
314 if (in_array($ruleIndex, self::STATE_VALUES)) {
315 $this->ruleState = $ruleIndex;
317 switch ($ruleIndex) {
415 $ruleIndex = $ctx->getRuleIndex();
416 switch ($ruleIndex) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DFailedPredicateException.php19 private $ruleIndex; variable in Antlr\\Antlr4\\Runtime\\Error\\Exceptions\\FailedPredicateException
47 $this->ruleIndex = $trans->ruleIndex;
50 $this->ruleIndex = 0;
60 return $this->ruleIndex;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DDiagnosticErrorListener.php119 $ruleIndex = $dfa->atnStartState->ruleIndex;
123 if ($ruleIndex < 0 || $ruleIndex >= \count($ruleNames)) {
127 $ruleName = $ruleNames[$ruleIndex];
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLL1Analyzer.php219 $removed = $calledRuleStack->contains($s->ruleIndex);
222 $calledRuleStack->remove($s->ruleIndex);
238 $calledRuleStack->add($s->ruleIndex);
249 if ($calledRuleStack->contains($t->target->ruleIndex)) {
256 $calledRuleStack->add($t->target->ruleIndex);
268 $calledRuleStack->remove($t->target->ruleIndex);
H A DParser.php585 public function enterRule(ParserRuleContext $localctx, int $state, int $ruleIndex) : void argument
649 public function enterRecursionRule(ParserRuleContext $localctx, int $state, int $ruleIndex, int $precedence) : void argument
664 public function pushNewRecursionContext(ParserRuleContext $localctx, int $state, int $ruleIndex) : void argument
714 public function getInvokingContext(int $ruleIndex) : ?RuleContext argument
718 if ($p->getRuleIndex() === $ruleIndex) {
862 $ruleIndex = $p->getRuleIndex();
864 if ($ruleIndex < 0) {
867 $stack[] = $ruleNames[$ruleIndex];
H A DRecognizer.php186 public function sempred(?RuleContext $localctx, int $ruleIndex, int $actionIndex) : bool argument
196 public function action(?RuleContext $localctx, int $ruleIndex, int $actionIndex) : void argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php61 public $ruleIndex = 0; variable in Antlr\\Antlr4\\Runtime\\Atn\\States\\ATNState
151 public function setRuleIndex(int $ruleIndex) : void argument
153 $this->ruleIndex = $ruleIndex;
/plugin/diagramsnet/lib/js/grapheditor/
H A DFormat.js4664 StyleFormatPanel.prototype.addSvgRule = function(container, rule, svg, styleElem, rules, ruleIndex,… argument
4692 rules[ruleIndex].style[key] = color;
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js7080 },insertRule:function(styleSheet,cssText,ruleIndex){if(FBTrace.DBG_CSS){FBTrace.sysout("Insert: "+r… argument
7081 }var insertIndex=styleSheet.insertRule(cssText,ruleIndex);
7082 dispatch(this.fbListeners,"onCSSInsertRule",[styleSheet,cssText,ruleIndex]);
7084 },deleteRule:function(styleSheet,ruleIndex){if(FBTrace.DBG_CSS){FBTrace.sysout("deleteRule: "+ruleI… argument
7085 }dispatch(this.fbListeners,"onCSSDeleteRule",[styleSheet,ruleIndex]);
7086 styleSheet.deleteRule(ruleIndex)
7548 var ruleIndex=cssRules.length;
7550 for(ruleIndex=0;
7551 ruleIndex<cssRules.length&&searchRule!=cssRules[ruleIndex];
7552 ruleIndex++){}}if(oldRule){Firebug.CSSModule.deleteRule(styleSheet,ruleIndex)
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js26690 insertRule: function(styleSheet, cssText, ruleIndex) argument
26692 if (FBTrace.DBG_CSS) FBTrace.sysout("Insert: " + ruleIndex + " " + cssText);
26693 var insertIndex = styleSheet.insertRule(cssText, ruleIndex);
26695 dispatch(this.fbListeners, "onCSSInsertRule", [styleSheet, cssText, ruleIndex]);
26700 deleteRule: function(styleSheet, ruleIndex) argument
26703 dispatch(this.fbListeners, "onCSSDeleteRule", [styleSheet, ruleIndex]);
26705 styleSheet.deleteRule(ruleIndex);
28513 var ruleIndex = cssRules.length;
28517 … for (ruleIndex=0; ruleIndex<cssRules.length && searchRule!=cssRules[ruleIndex]; ruleIndex++) {}
28524 Firebug.CSSModule.deleteRule(styleSheet, ruleIndex);
[all …]