Home
last modified time | relevance | path

Searched refs:precedence (Results 1 – 25 of 53) sorted by path

123

/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1 …es in the template. If a setting\n\t * object is provided it takes precedence over `_.template…
/plugin/ckgdoku/ckeditor/lang/
H A Den.js.ckgedit42 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
H A Den.js.unc47 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
/plugin/ckgdoku/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc33 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
/plugin/ckgedit/ckeditor/lang/
H A Den.4.9.js.beautified795 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
H A Den.js-4.9.merged47 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
H A Den.js.ckgedit46 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
H A Den.js.unc47 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
87 …eight:bold'>Link Display Text</span><br />Can be edited by user (takes precedence over Page Name o…
/plugin/ckgedit/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc33 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
/plugin/ckgedit/lang/
H A Den.4.9.js.beautified795 …nt-weight:bold'>Link Display Text</span><br />User defined Text (takes precedence over Page Name o…
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1 … undefined) {\n // If repeatOverride is specified, that takes precedence over the\n …
/plugin/codemirror/dist/modes/
H A Dmarkdown.min.js.map1 …-1\n return getType(state);\n // SETEXT has lowest block-scope precedence after HR, so che…
H A Dswift.min.js.map1 …associativity\",\"infix\",\"left\",\"none\",\"operator\",\"postfix\",\"precedence\",\"precedencegr…
/plugin/codemirror/dist/
H A Dscripts.min.js.map1 …tate.overlayPos);\n\n // state.overlay.combineTokens always takes precedence over combine,\n …
/plugin/codeprettify/code-prettify/src/
H A Dlang-swift.js51 …ng|open|operator|optional|OSX|OSXApplicationExtension|override|postfix|precedence|prefix|private|p…
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php417 if ($t->precedence === 0) {
555 throw new \RuntimeException('Couldn\'t identify final state of the precedence rule prefix section.');
639 // precedence rule should continue or complete.
H A DParserATNSimulator.php351 // The start state for a precedence DFA depends on the current
352 // parser precedence, and is provided by a DFA method.
384 * If this is a precedence DFA, we use applyPrecedenceFilter
385 * to convert the computed start state to a precedence start
387 * appropriate start state for the precedence level rather
1143 * Because we have special information, that these are precedence predicates,
1146 * that the current precedence level is greater than or equal to the precedence
1162 * enter the loop as it is consistent with the notion of operator precedence.
1165 * The solution requires a different DFA start state for each precedence leve
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DOrOperator.php45 // interested in the transition with the highest precedence
47 return $a->precedence - $b->precedence;
H A DPrecedencePredicate.php14 public $precedence; variable in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\PrecedencePredicate
16 public function __construct(int $precedence = 0) argument
18 $this->precedence = $precedence;
23 return $parser->precpred($parserCallStack, $this->precedence);
28 if ($parser->precpred($parserCallStack, $this->precedence)) {
37 return Hasher::hash(31, $this->precedence);
50 return $this->precedence === $other->precedence;
55 return \sprintf('{%d>=prec}?', $this->precedence);
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DPrecedencePredicateTransition.php13 public $precedence; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PrecedencePredicateTransition
15 public function __construct(ATNState $target, int $precedence) argument
19 $this->precedence = $precedence;
29 return new PrecedencePredicate($this->precedence);
52 && $this->precedence === $other->precedence
58 return $this->precedence . ' >= _p';
H A DRuleTransition.php21 public $precedence; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RuleTransition
30 public function __construct(RuleStartState $ruleStart, int $ruleIndex, int $precedence, ATNState $followState) argument
35 $this->precedence = $precedence;
65 && $this->precedence === $other->precedence
71 return \sprintf('rule_%d:%d,%s', $this->ruleIndex, $this->precedence, $this->followState);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFA.php37 * `true` if this DFA is for a precedence decision; otherwise, `false`.
64 * Gets whether this DFA is a precedence DFA. Precedence DFAs use a special
68 * precedence values.
70 * @return bool `true` if this is a precedence DFA; otherwise, `false`.
80 * Get the start state for a specific precedence value.
82 * @param int $precedence The current precedence.
85 * precedence, or `null` if no start state exists
86 * for the specified precedence.
88 * @throws \InvalidArgumentException If this is not a precedence DF
90 getPrecedenceStartState(int $precedence) global() argument
116 setPrecedenceStartState(int $precedence, DFAState $startState) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php639 * Get the precedence level for the top-most precedence rule.
641 * @return int The precedence level for the top-most precedence rule, or -1
642 * if the parser context is not nested within a precedence rule.
649 public function enterRecursionRule(ParserRuleContext $localctx, int $state, int $ruleIndex, int $precedence) : void argument
652 $this->precedenceStack[] = $precedence;
752 public function precpred(RuleContext $localctx, int $precedence) : bool argument
754 return $precedence >= $this->getPrecedence();
H A DRecognizer.php191 public function precpred(RuleContext $localctx, int $precedence) : bool argument
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md

123