Home
last modified time | relevance | path

Searched refs:compiler (Results 226 – 250 of 586) sorted by path

12345678910>>...24

/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
H A DEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('==');
H A DFloorDivBinary.php18 public function compile(Compiler $compiler) argument
20 $compiler->raw('(int) floor(');
21 parent::compile($compiler);
22 $compiler->raw(')');
25 public function operator(Compiler $compiler) argument
27 return $compiler->raw('/');
H A DGreaterBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('>');
H A DGreaterEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('>=');
H A DInBinary.php18 public function compile(Compiler $compiler) argument
20 $compiler
29 public function operator(Compiler $compiler) argument
31 return $compiler->raw('in');
H A DLessBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('<');
H A DLessEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('<=');
H A DMatchesBinary.php18 public function compile(Compiler $compiler) argument
20 $compiler
29 public function operator(Compiler $compiler) argument
31 return $compiler->raw('');
H A DModBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('%');
H A DMulBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('*');
H A DNotEqualBinary.php18 public function operator(Compiler $compiler) argument
20 return $compiler->raw('!=');
H A DNotInBinary.php18 public function compile(Compiler $compiler) argument
20 $compiler
29 public function operator(Compiler $compiler) argument
31 return $compiler->raw('not in');
H A DOrBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('||');
H A DPowerBinary.php18 public function compile(Compiler $compiler) argument
21 return parent::compile($compiler);
24 $compiler
33 public function operator(Compiler $compiler) argument
35 return $compiler->raw('**');
H A DRangeBinary.php18 public function compile(Compiler $compiler) argument
20 $compiler
29 public function operator(Compiler $compiler) argument
31 return $compiler->raw('..');
H A DStartsWithBinary.php18 public function compile(Compiler $compiler) argument
20 $left = $compiler->getVarName();
21 $right = $compiler->getVarName();
22 $compiler
31 public function operator(Compiler $compiler) argument
33 return $compiler->raw('');
H A DSubBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('-');
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DBlockReferenceExpression.php44 public function compile(Compiler $compiler) argument
47 $this->compileTemplateCall($compiler, 'hasBlock');
50 $compiler->addDebugInfo($this);
64 $compiler->write('$this');
66 $compiler
77 $compiler->raw(sprintf('->%s', $method));
78 $this->compileBlockArguments($compiler);
80 return $compiler;
85 $compiler
91 $compiler->raw(', $blocks');
[all …]
H A DCallExpression.php29 $compiler->raw($callable);
54 $compiler->raw(')');
60 $compiler->raw($isArray ? '[' : '(');
65 $compiler->raw('$this->env');
71 $compiler->raw(', ');
73 $compiler->raw('$context');
80 $compiler->raw(', ');
82 $compiler->string($argument);
89 $compiler->raw(', ');
102 $compiler->raw(', ');
[all …]
H A DConditionalExpression.php24 public function compile(Compiler $compiler) argument
26 $compiler
H A DConstantExpression.php24 public function compile(Compiler $compiler) argument
26 $compiler->repr($this->getAttribute('value'));
H A DFilterExpression.php25 public function compile(Compiler $compiler) argument
28 $filter = $compiler->getEnvironment()->getFilter($name);
43 $this->compileCallable($compiler);
H A DFunctionExpression.php24 public function compile(Compiler $compiler) argument
27 $function = $compiler->getEnvironment()->getFunction($name);
47 $this->compileCallable($compiler);
H A DGetAttrExpression.php30 public function compile(Compiler $compiler) argument
37 $compiler->raw('twig_template_get_attributes($this, ');
39 $compiler->raw('$this->getAttribute(');
46 $compiler->subcompile($this->getNode('node'));
48 $compiler->raw(', ')->subcompile($this->getNode('attribute'));
58 $compiler->raw(', ')->subcompile($this->getNode('arguments'));
60 $compiler->raw(', []');
65 $compiler->raw(', ')->repr($this->getAttribute('type'));
69 $compiler->raw(', ')->repr($this->getAttribute('is_defined_test'));
73 $compiler->raw(', ')->repr($this->getAttribute('ignore_strict_check'));
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Filter/
H A DDefaultFilter.php48 public function compile(Compiler $compiler) argument
50 $compiler->subcompile($this->getNode('node'));

12345678910>>...24