Home
last modified time | relevance | path

Searched refs:repr (Results 1 – 17 of 17) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DMethodCallExpression.php32 ->repr($this->getNode('node')->getAttribute('name'))
34 ->repr($this->getAttribute('method'))
43 ->repr($this->getNode('node')->getAttribute('name'))
45 ->repr($this->getAttribute('method'))
59 ->repr($this->getTemplateLine())
DGetAttrExpression.php79 ->repr($this->getAttribute('type'))
80 ->raw(', ')->repr($this->getAttribute('is_defined_test'))
81 ->raw(', ')->repr($this->getAttribute('ignore_strict_check'))
82 ->raw(', ')->repr($env->hasExtension(SandboxExtension::class))
83 ->raw(', ')->repr($this->getNode('node')->getTemplateLine())
DBlockReferenceExpression.php61 ->repr($this->getTemplateName())
63 ->repr($this->getTemplateLine())
DNameExpression.php38 $compiler->repr(true);
80 ->repr($this->lineno)
DConstantExpression.php26 $compiler->repr($this->getAttribute('value'));
/template/twigstarter/vendor/twig/twig/src/Node/
DImportNode.php35 ->repr($this->getNode('var')->getAttribute('name'))
42 ->repr($this->getNode('var')->getAttribute('name'))
54 ->repr($this->getTemplateName())
56 ->repr($this->getTemplateLine())
DModuleNode.php128 ->repr($this->getSourceContext()->getName())
130 ->repr($parent->getTemplateLine())
200 ->repr($node->getTemplateName())
202 ->repr($node->getTemplateLine())
209 ->repr($node->getTemplateLine())
227 ->repr($node->getTemplateLine())
328 ->repr($this->getSourceContext()->getName())
330 ->repr($parent->getTemplateLine())
367 ->repr($this->getSourceContext()->getName())
461 ->repr($node->getTemplateName())
[all …]
DNode.php59 $repr = [static::class.'('.implode(', ', $attributes)];
69 $repr[] = sprintf(' %s: %s', $name, ltrim(implode("\n", $noderepr)));
72 $repr[] = ')';
74 $repr[0] .= ')';
77 return implode("\n", $repr);
DCheckSecurityNode.php52 ->write('static $tags = ')->repr(array_filter($tags))->raw(";\n")
53 ->write('static $filters = ')->repr(array_filter($filters))->raw(";\n")
54 ->write('static $functions = ')->repr(array_filter($functions))->raw(";\n\n")
DEmbedNode.php40 ->repr($this->getTemplateName())
42 ->repr($this->getTemplateLine())
DIncludeNode.php83 ->repr($this->getTemplateName())
85 ->repr($this->getTemplateLine())
DCheckToStringNode.php41 ->repr($expr->getTemplateLine())
DSandboxedPrintNode.php47 ->repr($expr->getTemplateLine())
DWithNode.php47 ->repr($node->getTemplateLine())
/template/twigstarter/vendor/twig/twig/src/Profiler/Node/
DEnterProfileNode.php33 ->repr($this->getAttribute('extension_name'))
36 ->repr($this->getAttribute('type'))
38 ->repr($this->getAttribute('name'))
/template/twigstarter/vendor/twig/twig/src/
DCompiler.php141 public function repr($value) function in Twig\\Compiler
165 $this->repr($key);
167 $this->repr($v);
/template/strap/vendor/symfony/yaml/
H A DInline.php170 $repr = (string) $value;
172 $repr = str_ireplace('INF', '.Inf', $repr);
173 } elseif (floor($value) == $value && $repr == $value) {
175 if (false === strpos($repr, 'E')) {
176 $repr = $repr.'.0';
180 $repr = \is_string($value) ? "'$value'" : (string) $value;
186 return $repr;