Home
last modified time | relevance | path

Searched refs:expression (Results 176 – 200 of 273) sorted by last modified time

1234567891011

/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dinclude.rst40 And if the expression evaluates to a ``\Twig\Template`` or a
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Duse.rst67 passed to the template, the template reference cannot be an expression.
H A Dwith.rst29 {# it works with any expression that resolves to a hash #}
H A Dif.rst6 In the simplest form you can use it to test if an expression evaluates to
63 The rules to determine if an expression is ``true`` or ``false`` are the
H A Dset.rst21 The assigned value can be any valid :ref:`Twig expression
H A Dextends.rst182 As the template name for the parent can be any valid Twig expression, it's
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst42 result of an expression to the template.
267 The :doc:`if<tags/if>` tag can be used to test an expression:
488 expression:
616 {# keys as expressions (the expression must be enclosed into parentheses) -- as of Twig 1.5 #}
678 * ``(expr)``: Groups an expression.
691 The following comparison operators are supported in any expression: ``==``,
748 a common expression. The right operand is name of the test:
830 String interpolation (``#{expression}``) allows any valid expression to appear
831 within a *double-quoted string*. The result of evaluating that expression is
H A Dinternals.rst35 * ``\Twig\Token::TEXT_TYPE``: A text outside an expression;
36 * ``\Twig\Token::NAME_TYPE``: A name in an expression;
37 * ``\Twig\Token::NUMBER_TYPE``: A number in an expression;
38 * ``\Twig\Token::STRING_TYPE``: A string in an expression;
80 the basic nodes like: ``for``, ``if``, ... and the expression nodes.
H A Dadvanced_legacy.rst34 * ``{{ }}``: used to print the result of an expression evaluation;
53 * The tag is not flexible as you cannot use it in an expression:
80 extension point to use. And you can use it anywhere an expression is accepted:
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst25 be possible to use ``@Exclude(if="expression")`` to exclude dynamically a property.
33 be possible to use ``@Expose(if="expression")`` to expose dynamically a property.
258 …s exposed using the ``object.getFirstName()`` expression (``exp`` can contain any valid symfony ex…
H A Dxml_reference.rst74 <virtual-property expression="object.getName()"
/plugin/findologicxmlexport/vendor/jms/serializer/src/Expression/
H A DExpression.php18 private $expression; variable in JMS\\Serializer\\Expression\\Expression
20 public function __construct(BaseExpression $expression) argument
22 $this->expression = $expression;
27 return $this->expression;
38 return (string) $this->expression;
50 return serialize([(string) $this->expression, serialize($this->expression->getNodes())]);
64 $this->expression = new SerializedParsedExpression(...unserialize($str));
/plugin/findologicxmlexport/vendor/hoa/math/
H A DArithmetic.pp55 expression:
56 primary() ( ::plus:: #addition expression() )?
59 secondary() ( ::minus:: #substraction expression() )?
62 ternary() ( ::times:: #multiplication expression() )?
65 term() ( ::div:: #division expression() )?
68 ( ::bracket_:: expression() ::_bracket:: #group )
86 ( expression() ( ::comma:: expression() )* )?
/plugin/findologicxmlexport/vendor/hoa/math/Bin/
H A DCalc.php86 $this->parser->listInputs($expression);
94 if (null !== $expression) {
95 $ast = $compiler->parse($expression);
96 echo $expression . ' = ' . $visitor->visit($ast), "\n";
111 $expression = 'h';
114 switch ($expression) {
175 if (null === $expression) {
180 echo $visitor->visit($compiler->parse($expression)), "\n";
187 $handle = $expression;
191 } while (false !== $expression = $readline->readLine('> '));
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DGrammar.pp119 #expression:
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dspaceless.rst40 As the filter uses a regular expression behind the scenes, its performance
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DEscaperNodeVisitor.php91 $expression = $node->getNode('expr');
93 if ($this->isSafeFor($type, $expression, $env)) {
100 $this->getEscaperFilter($type, $expression),
124 protected function isSafeFor($type, \Twig_NodeInterface $expression, $env) argument
126 $safe = $this->safeAnalysis->getSafe($expression);
135 $this->traverser->traverse($expression);
136 $safe = $this->safeAnalysis->getSafe($expression);
H A DOptimizerNodeVisitor.php95 $expression = $node instanceof AbstractExpression;
111 …if (!$expression && 'Twig_Node' !== \get_class($node) && $prependedNodes = array_shift($this->prep…
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Ddefined.rst23 When using the ``defined`` test on an expression that uses variables in some
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Darray.test23 {# elements can be any expression #}
34 {# keys can be any expression #}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dliteral.test9 2. Conditional expression with only literals
12 3. Conditional expression with a variable
32 2. Conditional expression with only literals
35 3. Conditional expression with a variable
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/
H A Dexpression.test2 "with" tag with expression
H A Diterable.test2 "with" tag with an iterable expression
H A Dwith_no_hash.test2 "with" tag with an expression that is not a hash
H A Dwith_only.test2 "with" tag with expression and only

1234567891011