Searched refs:regexes (Results 1 – 1 of 1) sorted by relevance
| /template/twigstarter/vendor/twig/twig/src/ |
| D | Lexer.php | 36 private $regexes; variable in Twig\\Lexer 95 $this->regexes = [ 201 … preg_match_all($this->regexes['lex_tokens_start'], $this->code, $matches, \PREG_OFFSET_CAPTURE); 283 … if (preg_match($this->regexes['lex_block_raw'], $this->code, $match, 0, $this->cursor)) { 287 … } elseif (preg_match($this->regexes['lex_block_line'], $this->code, $match, 0, $this->cursor)) { 307 …if (!$this->brackets && preg_match($this->regexes['lex_block'], $this->code, $match, 0, $this->cur… 318 …if (!$this->brackets && preg_match($this->regexes['lex_var'], $this->code, $match, 0, $this->curso… 339 if (preg_match($this->regexes['operator'], $this->code, $match, 0, $this->cursor)) { 443 …if (!preg_match($this->regexes['lex_raw_data'], $this->code, $match, \PREG_OFFSET_CAPTURE, $this->… 467 …if (!preg_match($this->regexes['lex_comment'], $this->code, $match, \PREG_OFFSET_CAPTURE, $this->c… [all …]
|