Home
last modified time | relevance | path

Searched refs:expression (Results 176 – 200 of 273) sorted by path

1234567891011

/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst74 <virtual-property expression="object.getName()"
/plugin/findologicxmlexport/vendor/jms/serializer/src/Accessor/
H A DDefaultAccessorStrategy.php65 …if (($metadata->expression instanceof Expression) && ($this->evaluator instanceof CompilableExpres…
66 return $this->evaluator->evaluateParsed($metadata->expression, $variables);
68 return $this->evaluator->evaluate($metadata->expression, $variables);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Expression/
H A DCompilableExpressionEvaluatorInterface.php12 public function parse(string $expression, array $names = []): Expression; argument
17 public function evaluateParsed(Expression $expression, array $data = []); argument
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));
H A DExpressionEvaluator.php41 public function evaluate(string $expression, array $data = []) argument
43 return $this->expressionLanguage->evaluate($expression, $data + $this->context);
49 public function evaluateParsed(Expression $expression, array $data = []) argument
51 … return $this->expressionLanguage->evaluate($expression->getExpression(), $data + $this->context);
54 public function parse(string $expression, array $names = []): Expression argument
56 …return new Expression($this->expressionLanguage->parse($expression, array_merge(array_keys($this->…
H A DExpressionEvaluatorInterface.php15 public function evaluate(string $expression, array $data = []); argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DExpressionMetadataTrait.php23 private function parseExpression(string $expression, array $names = []) argument
26 return $expression;
30 …return $this->expressionEvaluator->parse($expression, array_merge(['context', 'property_metadata',…
32 …row new InvalidMetadataException(sprintf('Can not parse the expression "%s"', $expression), 0, $e);
H A DXmlDriver.php139 if (isset($method->attributes()->expression)) {
143 $this->parseExpression((string) $method->attributes()->expression)
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DExpressionPropertyMetadata.php20 public $expression; variable in JMS\\Serializer\\Metadata\\ExpressionPropertyMetadata
23 * @param string|Expression $expression
25 public function __construct(string $class, string $fieldName, $expression) argument
29 $this->expression = $expression;
43 $this->expression,
60 $this->expression,
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md13 1. Returning a series of Value Object for given expression while resolving any partial class names,…
75 in which namespace the given expression occurs and which namespace aliases (or imports) apply.
92 inform the resolver in which namespace the given expression occurs and which namespace aliases (or …
136 type expression occurs.
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst105 Within an expression or in a tag, you can use the ``trans`` filter to translate
131 {# use the temporary variable within an expression #}
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG657 * allowed hash keys to be any expression
844 * enhanced error messages when an unexpected token is parsed in an expression
950 * added support for __call() in expression resolution
1039 * extended set tag to support expression as value ({% set foo as 'foo' ~ 'bar' %} )
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst33 * ``{{ }}``: used to print the result of an expression evaluation;
52 * The tag is not flexible as you cannot use it in an expression:
79 extension point to use. And you can use it anywhere an expression is accepted:
371 The ``node`` sub-node will contain an expression of ``my_value``. Node-based
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:
H A Dapi.rst433 {{ foo ? text|escape : "<br />Twig" }} {# the result of the expression won't be escaped #}
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 Drecipes.rst67 any valid expression, you can pass a variable that evaluates to ``true`` when
91 As a matter of fact, the template name can be any valid expression, such as
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Ddefault.rst17 When using the ``default`` filter on an expression that uses variables in some
H A Draw.rst35 expression. The third ternary statement is marked as safe and the result is
H A Dslice.rst19 You can use any valid expression for both the start and the length:
H A Dspaceless.rst40 As the filter uses a regular expression behind the scenes, its performance
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dattribute.rst26 notation, except that the item can be any valid expression.
H A Dinclude.rst40 And if the expression evaluates to a ``\Twig\Template`` or a
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Ddo.rst7 The ``do`` tag works exactly like the regular variable expression (``{{ ...
H A Dextends.rst182 As the template name for the parent can be any valid Twig expression, it's

1234567891011