Home
last modified time | relevance | path

Searched refs:compiler (Results 301 – 325 of 586) sorted by last modified time

1...<<11121314151617181920>>...24

/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Binary/
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 DAddBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('+');
H A DAndBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('&&');
H A DBitwiseAndBinary.php19 public function operator(Compiler $compiler) argument
21 return $compiler->raw('&');
H A DBitwiseOrBinary.php19 public function operator(Compiler $compiler) argument
21 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 DParentExpression.php29 public function compile(Compiler $compiler) argument
32 $compiler
39 $compiler
H A DTempNameExpression.php23 public function compile(Compiler $compiler) argument
25 $compiler
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php38 public function compile(Twig_Compiler $compiler) argument
40 $compiler->addDebugInfo($this);
61 $compiler
67 $compiler
76 $compiler->raw('), array(');
80 $compiler
87 $compiler
96 $compiler->raw("));\n");
98 $compiler
104 $compiler
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DBoundedExhaustive.php101 Compiler\Llk\Parser $compiler,
105 parent::__construct($compiler, $tokenSampler);
H A DSampler.php110 Compiler\Llk\Parser $compiler,
113 $this->_compiler = $compiler;
114 $this->_tokens = $compiler->getTokens();
115 $this->_rules = $compiler->getRules();
117 $this->_rootRuleName = $compiler->getRootRule();
/plugin/findologicxmlexport/vendor/hoa/math/Bin/
H A DCalc.php88 $compiler = Compiler\Llk::load(
95 $ast = $compiler->parse($expression);
165 echo $dump->visit($compiler->parse($handle)), "\n";
180 echo $visitor->visit($compiler->parse($expression)), "\n";
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php58 protected $compiler; variable in Twig\\Environment
758 if (null === $this->compiler) {
759 $this->compiler = new Compiler($this);
762 return $this->compiler;
765 public function setCompiler(\Twig_CompilerInterface $compiler) argument
767 $this->compiler = $compiler;
777 if (null === $this->compiler) {
778 $this->compiler = new Compiler($this);
781 return $this->compiler->compile($node)->getSource();
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DAutoEscapeNode.php34 public function compile(Compiler $compiler) argument
36 $compiler->subcompile($this->getNode('body'));
H A DCheckToStringNode.php34 public function compile(Compiler $compiler) argument
36 $compiler
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Test/
H A DConstantTest.php28 public function compile(Compiler $compiler) argument
30 $compiler
37 $compiler
44 $compiler
H A DDefinedTest.php65 public function compile(Compiler $compiler) argument
67 $compiler->subcompile($this->getNode('node'));

1...<<11121314151617181920>>...24