Home
last modified time | relevance | path

Searched refs:raw (Results 226 – 250 of 417) sorted by last modified time

12345678910>>...17

/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
H A DLessBinary.php20 return $compiler->raw('<');
H A DLessEqualBinary.php20 return $compiler->raw('<=');
H A DMatchesBinary.php21 ->raw('preg_match(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('');
H A DModBinary.php21 return $compiler->raw('%');
H A DAddBinary.php21 return $compiler->raw('+');
H A DAndBinary.php21 return $compiler->raw('&&');
H A DBitwiseAndBinary.php21 return $compiler->raw('&');
H A DBitwiseOrBinary.php21 return $compiler->raw('|');
H A DRangeBinary.php21 ->raw('range(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('..');
H A DStartsWithBinary.php23 ->raw(sprintf('(is_string($%s = ', $left))
25 ->raw(sprintf(') && is_string($%s = ', $right))
27 ->raw(sprintf(') && (\'\' === $%2$s || 0 === strpos($%1$s, $%2$s)))', $left, $right))
33 return $compiler->raw('');
H A DSubBinary.php21 return $compiler->raw('-');
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DParentExpression.php36 ->raw(", \$context, \$blocks);\n")
40 ->raw('$this->renderParentBlock(')
42 ->raw(', $context, $blocks)')
H A DTempNameExpression.php26 ->raw('$_')
27 ->raw($this->getAttribute('name'))
28 ->raw('_')
/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/doc/tags/
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/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 DCheckToStringNode.php37 ->raw('$this->sandbox->ensureToStringAllowed(')
39 ->raw(')')
H A DIfNode.php51 ->raw(") {\n")
H A DImportNode.php36 ->raw(' = ')
40 $compiler->raw('$this');
43 ->raw('$this->loadTemplate(')
45 ->raw(', ')
47 ->raw(', ')
49 ->raw(')')
53 $compiler->raw(";\n");
H A DPrintNode.php36 ->raw(";\n")
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Test/
H A DConstantTest.php31 ->raw('(')
33 ->raw(' === constant(')
38 ->raw('get_class(')
40 ->raw(')."::".')
46 ->raw('))')
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Unary/
H A DAbstractUnary.php27 $compiler->raw(' ');
H A DNegUnary.php21 $compiler->raw('-');
H A DPosUnary.php21 $compiler->raw('+');

12345678910>>...17