Home
last modified time | relevance | path

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

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