Home
last modified time | relevance | path

Searched refs:PUNCTUATION_TYPE (Results 1 – 10 of 10) sorted by last modified time

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticTokenParser.php96 $stream->expect(\Twig_Token::PUNCTUATION_TYPE, '[');
101 if (!$stream->test(\Twig_Token::PUNCTUATION_TYPE, ',')) {
108 $stream->expect(\Twig_Token::PUNCTUATION_TYPE, ']');
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DSimpleTokenParser.php122 …grammar->addGrammar(new Twig_Extensions_Grammar_Constant($match[0], Twig_Token::PUNCTUATION_TYPE));
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/
H A DSimpleTokenParserTest.php108 new Twig_Extensions_Grammar_Constant(',', Twig_Token::PUNCTUATION_TYPE),
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DLexer.php283 $this->pushToken(Token::PUNCTUATION_TYPE, $this->code[$this->cursor]);
H A DExpressionParser.php112 } elseif ($token->test(Token::PUNCTUATION_TYPE, '(')) {
225 if ($token->test(Token::PUNCTUATION_TYPE, '[')) {
274 while (!$stream->test(Token::PUNCTUATION_TYPE, ']')) {
299 while (!$stream->test(Token::PUNCTUATION_TYPE, '}')) {
340 if (Token::PUNCTUATION_TYPE == $token->getType()) {
453 if ($stream->test(Token::PUNCTUATION_TYPE, ':')) {
460 if ($stream->nextIf(Token::PUNCTUATION_TYPE, ':')) {
475 $stream->expect(Token::PUNCTUATION_TYPE, ']');
480 $stream->expect(Token::PUNCTUATION_TYPE, ']');
535 while (!$stream->test(Token::PUNCTUATION_TYPE, ')')) {
[all …]
H A DToken.php38 const PUNCTUATION_TYPE = 9; define in Twig\\Token
151 case self::PUNCTUATION_TYPE:
197 case self::PUNCTUATION_TYPE:
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinternals.rst40 * ``\Twig\Token::PUNCTUATION_TYPE``: A punctuation sign;
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DFromTokenParser.php45 if (!$stream->nextIf(Token::PUNCTUATION_TYPE, ',')) {
H A DUseTokenParser.php56 if (!$stream->nextIf(Token::PUNCTUATION_TYPE, ',')) {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DLexerTest.php56 $this->assertEquals(2, $this->countToken($template, Token::PUNCTUATION_TYPE, '{'));
57 $this->assertEquals(2, $this->countToken($template, Token::PUNCTUATION_TYPE, '}'));