Home
last modified time | relevance | path

Searched refs:REGEX_NAME (Results 1 – 2 of 2) sorted by relevance

/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DLexer.php49 const REGEX_NAME = '/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/A'; define in Twig\\Lexer
252 elseif (preg_match(self::REGEX_NAME, $this->code, $match, null, $this->cursor)) {
H A DExpressionParser.php198 …if (preg_match(Lexer::REGEX_NAME, $token->getValue(), $matches) && $matches[0] == $token->getValue…
418 … (Token::OPERATOR_TYPE == $token->getType() && preg_match(Lexer::REGEX_NAME, $token->getValue()))