Home
last modified time | relevance | path

Searched refs:raw (Results 26 – 50 of 90) sorted by path

1234

/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DArrayExpression.php70 $compiler->raw('[');
74 $compiler->raw(', ');
80 ->raw(' => ')
84 $compiler->raw(']');
H A DArrowFunctionExpression.php33 ->raw('function (')
37 $compiler->raw(', ');
41 ->raw('$__')
42 ->raw($name->getAttribute('name'))
43 ->raw('__')
47 ->raw(') use ($context, $macros) { ')
51 ->raw('$context["')
53 ->raw('"] = $__')
55 ->raw('__; ')
59 ->raw('return ')
[all …]
H A DAssignNameExpression.php22 ->raw('$context[')
24 ->raw(']')
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/
H A DAbstractBinary.php29 ->raw('(')
31 ->raw(' ')
35 ->raw(' ')
37 ->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 DBitwiseXorBinary.php21 return $compiler->raw('^');
H A DConcatBinary.php21 return $compiler->raw('.');
H A DDivBinary.php21 return $compiler->raw('/');
H A DEndsWithBinary.php23 ->raw(sprintf('(is_string($%s = ', $left))
25 ->raw(sprintf(') && is_string($%s = ', $right))
27 … ->raw(sprintf(') && (\'\' === $%2$s || $%2$s === substr($%1$s, -strlen($%2$s))))', $left, $right))
33 return $compiler->raw('');
H A DEqualBinary.php20 return $compiler->raw('==');
H A DFloorDivBinary.php20 $compiler->raw('(int) floor(');
22 $compiler->raw(')');
27 return $compiler->raw('/');
H A DGreaterBinary.php20 return $compiler->raw('>');
H A DGreaterEqualBinary.php20 return $compiler->raw('>=');
H A DInBinary.php21 ->raw('twig_in_filter(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('in');
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 DMulBinary.php21 return $compiler->raw('*');
H A DNotEqualBinary.php20 return $compiler->raw('!=');
H A DNotInBinary.php21 ->raw('!twig_in_filter(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('not in');
H A DOrBinary.php21 return $compiler->raw('||');

1234