Home
last modified time | relevance | path

Searched refs:raw (Results 51 – 75 of 90) sorted by path

1234

/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/
H A DPowerBinary.php20 return $compiler->raw('**');
H A DRangeBinary.php21 ->raw('range(')
23 ->raw(', ')
25 ->raw(')')
31 return $compiler->raw('..');
H A DSpaceshipBinary.php20 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('-');
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DBlockReferenceExpression.php45 ->raw(";\n");
60 ->raw(', ')
62 ->raw(', ')
64 ->raw(')')
68 $compiler->raw(sprintf('->%s', $method));
76 ->raw('(')
78 ->raw(', $context');
81 $compiler->raw(', $blocks');
84 return $compiler->raw(')');
H A DCallExpression.php30 $compiler->raw($callable);
49 $compiler->raw(sprintf('->%s', $callable[1]));
60 $compiler->raw(')');
66 $compiler->raw($isArray ? '[' : '(');
71 $compiler->raw('$this->env');
77 $compiler->raw(', ');
79 $compiler->raw('$context');
86 $compiler->raw(', ');
95 $compiler->raw(', ');
106 $compiler->raw(', ');
[all …]
H A DConditionalExpression.php27 ->raw('((')
29 ->raw(') ? (')
31 ->raw(') : (')
33 ->raw('))')
H A DGetAttrExpression.php44 ->raw('(('.$var.' = ')
46 ->raw(') && is_array(')
47 ->raw($var)
48 ->raw(') || ')
49 ->raw($var)
51 ->raw($var)
52 ->raw('[')
68 ->raw(', ')
75 $compiler->raw(', []');
78 $compiler->raw(', ')
[all …]
H A DInlinePrint.php30 ->raw('print (')
32 ->raw(')')
H A DMethodCallExpression.php31 ->raw('method_exists($macros[')
33 ->raw('], ')
35 ->raw(')')
42 ->raw('twig_call_macro($macros[')
44 ->raw('], ')
46 ->raw(', [')
51 $compiler->raw(', ');
58 ->raw('], ')
60 ->raw(', $context, $this->getSourceContext())');
H A DNameExpression.php41 ->raw('array_key_exists(')
43 ->raw(', $context)')
47 ->raw('(isset($context[')
51 ->raw(', $context))')
58 ->raw('$context[')
60 ->raw(']')
65 ->raw('($context[')
67 ->raw('] ?? null)')
71 ->raw('(isset($context[')
79 ->raw(' does not exist.\', ')
[all …]
H A DNullCoalesceExpression.php50 ->raw('((')
52 ->raw(') ?? (')
54 ->raw('))')
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('_')
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Test/
H A DConstantTest.php31 ->raw('(')
33 ->raw(' === constant(')
38 ->raw('get_class(')
40 ->raw(')."::".')
46 ->raw('))')
H A DDivisiblebyTest.php29 ->raw('(0 == ')
31 ->raw(' % ')
33 ->raw(')')
H A DEvenTest.php29 ->raw('(')
31 ->raw(' % 2 == 0')
32 ->raw(')')
H A DNullTest.php29 ->raw('(null === ')
31 ->raw(')')
H A DOddTest.php29 ->raw('(')
31 ->raw(' % 2 != 0')
32 ->raw(')')
H A DSameasTest.php27 ->raw('(')
29 ->raw(' === ')
31 ->raw(')')
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Unary/
H A DAbstractUnary.php28 $compiler->raw(' ');
H A DNegUnary.php21 $compiler->raw('-');
H A DNotUnary.php21 $compiler->raw('!');
H A DPosUnary.php21 $compiler->raw('+');

1234