Home
last modified time | relevance | path

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

123

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
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...]
H A DOrOperator.php45 // interested in the transition with the highest precedence
47 return $a->precedence - $b->precedence;
/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/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dunary_precedence.test2 Twig unary operators precedence
/plugin/loadskin/lang/en/
H A Dintro.txt3 …ser selecting a template via the optional template switcher might have precedence over these rules…
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DHTML.AllowedAttributes.txt
/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/codeprettify/code-prettify/src/
H A Dlang-swift.js51 …ng|open|operator|optional|OSX|OSXApplicationExtension|override|postfix|precedence|prefix|private|p…
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dnumber_format.rst22 Twig's :ref:`precedence of operators <twig-expressions>`:
/plugin/newpagetemplate/lang/en/
H A Dhowto.txt3 If you choose both ''ini file'' and ''Page id'', ''Page id'' will take precedence. If you choose ''Page id'', you must choose a template. The ''User replacements'' are the ''newpagevars'' that are explained in the [[doku>plugin:newpagetemplate#usage|newpagetemplate]] documentation. If you choose an initialization file, you can use the ''User replacements'' option to add replacements to those in the initialization file.
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php71 public function parseExpression($precedence = 0) argument
75 …his->isBinary($token) && $this->binaryOperators[$token->getValue()]['precedence'] >= $precedence) {
94 if (0 === $precedence) {
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.less14 /* extra precedence to overcome jqui */
135 /* extra precedence b/c buttons have margin set to zero */
238 /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
301 /* extra precedence to prevent theme-provided backgrounds */
815 /* extra precedence to override button border margins */
821 /* extra precedence to override button border margins */
828 /* button layering (for border precedence) */
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst560 The operator precedence is as follows, with the lowest-precedence operators
574 {# use parenthesis to change precedence #}
795 due to the :ref:`operator precedence rules <twig-expressions>`:
H A Dadvanced.rst781 '!' => ['precedence' => 50, 'class' => '\Twig\Node\Expression\Unary\NotUnary'],
784 …'||' => ['precedence' => 10, 'class' => '\Twig\Node\Expression\Binary\OrBinary', 'associativity' =…
785 …'&&' => ['precedence' => 15, 'class' => '\Twig\Node\Expression\Binary\AndBinary', 'associativity' …
938 precedence over any other registered extensions::
H A Dadvanced_legacy.rst801 '!' => ['precedence' => 50, 'class' => '\Twig\Node\Expression\Unary\NotUnary'],
804 …'||' => ['precedence' => 10, 'class' => '\Twig\Node\Expression\Binary\OrBinary', 'associativity' =…
805 …'&&' => ['precedence' => 15, 'class' => '\Twig\Node\Expression\Binary\AndBinary', 'associativity' …
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D63.63.js.map1 … 'optional',\n 'override',\n 'postfix',\n 'precedence',\n 'pref…
/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…
/plugin/ckgedit/ckeditor/lang/
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/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG169 * fixed precedence between getFoo() and isFoo() in Twig_Template::getAttribute()
635 * fixed unary operators precedence
684 …* changed the precedence of the .. operator to be more consistent with languages that implements s…
792 * fixed the ternary operator precedence rule
/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.
/plugin/codemirror/dist/modes/
H A Dswift.min.js.map1 …associativity\",\"infix\",\"left\",\"none\",\"operator\",\"postfix\",\"precedence\",\"precedencegr…

123