Home
last modified time | relevance | path

Searched refs:raw (Results 151 – 175 of 417) sorted by path

12345678910>>...17

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dd3.min.js4raw=Xt,ao.geo.albers=function(){return ao.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).p…
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DInline.php621 $raw = $scalar;
624 … return '0' == $scalar[0] ? octdec($scalar) : (((string) $raw == (string) $cast) ? $cast : $raw);
626 $raw = $scalar;
629 … return '0' == $scalar[1] ? octdec($scalar) : (((string) $raw === (string) $cast) ? $cast : $raw);
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php68 ->raw(', ')
70 ->raw(', abs(')
72 ->raw(')')
84 ->raw('), ')
89 ->raw(' => ')
91 ->raw(', ')
96 $compiler->raw("));\n");
105 ->raw(', ')
107 ->raw(', abs(')
109 ->raw(')')
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG478 * added verbatim as an alias for the raw tag to avoid confusion with the raw filter
626 * fixed raw blocks when used with the whitespace trim option
769 * fixed a parsing problem when a large chunk of text is enclosed in a raw tag
852 * added an Optimizer extension (enabled by default; optimizes "for" loops and "raw" filters)
861 * the "safe" filter has been renamed to "raw"
1056 * added $ escaping when outputting raw strings
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst221 or JavaScript code), you will want the raw output to be printed. In such a
355 ->raw('(')
357 ->raw(' % 2 == 1')
358 ->raw(')')
537 ->raw(";\n")
547 * ``raw()``: Writes the given string as is.
H A Dadvanced_legacy.rst248 or JavaScript code), you will want the raw output to be printed. In such a
477 ->raw(";\n")
487 * ``raw()``: Writes the given string as is.
H A Dapi.rst376 tag, ``autoescape``, and a filter, ``raw``.
385 escaping strategy), except those using the ``raw`` filter:
389 {{ article.to_html|raw }}
399 {{ var|raw }} {# var won't be escaped #}
430 {{ foo ? text|raw : "<br />Twig" }} {# won't be escaped #}
441 * The `raw` filter should only be used at the end of the filter chain:
445 {{ var|raw|upper }} {# will be escaped #}
447 {{ var|upper|raw }} {# won't be escaped #}
452 safe for JavaScript, ``raw`` is marked safe for everything.
466 concatenation, ``{{ foo|raw ~ bar }}`` won't give the expected result as
[all …]
H A Ddeprecated.rst118 * As of Twig 1.x, the ``raw`` tag is deprecated. You should use ``verbatim``
H A Dtemplates.rst484 used and you want to use ``{{`` as raw string in the template and not start a
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Descape.rst87 {{ var|escape(strategy)|raw }} {# won't be double-escaped #}
H A Dindex.rst26 raw
H A Draw.rst1 ``raw``
4 The ``raw`` filter marks the value as being "safe", which means that in an
6 if ``raw`` is the last filter applied to it:
11 {{ var|raw }} {# var won't be escaped #}
16 Be careful when using the ``raw`` filter inside expressions:
24 {{ false ? '<strong>Hola</strong>' : hello|raw }}
26 {{ false ? hola : hello|raw }}
28 {{ (false ? hola : hello)|raw }}
H A Durl_encode.rst8 The ``raw`` argument was removed in Twig 1.16.0. Twig now always encodes
30 ``raw`` argument was removed.)
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dautoescape.rst50 the :doc:`raw<../filters/raw>` filter:
55 {{ safe_value|raw }}
H A Dverbatim.rst5 The ``verbatim`` tag was added in Twig 1.12 (it was named ``raw`` before).
7 The ``verbatim`` tag marks sections as being raw text that should not be
23 The ``verbatim`` tag works in the exact same way as the old ``raw`` tag,
24 but was renamed to avoid confusion with the ``raw`` filter.
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Node/Expression/
H A DExtensionReference.php33 $compiler->raw(sprintf("\$this->env->getExtension('%s')", $this->getAttribute('name')));
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DCompiler.php97 public function subcompile(\Twig_NodeInterface $node, $raw = true) argument
99 if (false === $raw) {
115 public function raw($string) function in Twig\\Compiler
181 $this->raw(var_export($value, true));
187 $this->raw('null');
189 $this->raw($value ? 'true' : 'false');
191 $this->raw('[');
195 $this->raw(', ');
199 $this->raw(' => ');
202 $this->raw(']');
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DCheckSecurityNode.php49 ->write('$tags = ')->repr(array_filter($tags))->raw(";\n")
50 ->write('$filters = ')->repr(array_filter($filters))->raw(";\n")
51 ->write('$functions = ')->repr(array_filter($functions))->raw(";\n\n")
H A DCheckToStringNode.php37 ->raw('$this->sandbox->ensureToStringAllowed(')
39 ->raw(')')
H A DDeprecatedNode.php43 ->raw(";\n")
48 ->raw('.')
50 ->raw(", E_USER_DEPRECATED);\n")
H A DDoNode.php35 ->raw(";\n")
H A DEmbedNode.php41 ->raw(', ')
43 ->raw(', ')
45 ->raw(', ')
47 ->raw(')')
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DArrayExpression.php70 $compiler->raw('[');
74 $compiler->raw(', ');
80 ->raw(' => ')
84 $compiler->raw(']');
H A DAssignNameExpression.php22 ->raw('$context[')
24 ->raw(']')
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
H A DAbstractBinary.php28 ->raw('(')
30 ->raw(' ')
34 ->raw(' ')
36 ->raw(')')

12345678910>>...17