Home
last modified time | relevance | path

Searched refs:subparse (Results 1 – 12 of 12) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/TokenParser/
DIfTokenParser.php39 $body = $this->parser->subparse([$this, 'decideIfFork']);
48 $else = $this->parser->subparse([$this, 'decideIfEnd']);
54 $body = $this->parser->subparse([$this, 'decideIfFork']);
DForTokenParser.php52 $body = $this->parser->subparse([$this, 'decideForFork']);
55 $else = $this->parser->subparse([$this, 'decideForEnd'], true);
DSpacelessTokenParser.php39 $body = $this->parser->subparse([$this, 'decideSpacelessEnd'], true);
DWithTokenParser.php37 $body = $this->parser->subparse([$this, 'decideWithEnd'], true);
DSandboxTokenParser.php35 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DAutoEscapeTokenParser.php40 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DSetTokenParser.php54 $values = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DApplyTokenParser.php40 $body = $this->parser->subparse([$this, 'decideApplyEnd'], true);
DFilterTokenParser.php44 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DMacroTokenParser.php39 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DBlockTokenParser.php45 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
/template/twigstarter/vendor/twig/twig/src/
DParser.php97 $body = $this->subparse($test, $dropNeedle);
128 public function subparse($test, $dropNeedle = false) function in Twig\\Parser