Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php393 if ( ! $this->lexer->isNextToken($token) ) {
689 if ($this->lexer->isNextToken(DocLexer::T_MINUS)
859 if ( ! $this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) {
865 if ( ! $this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
883 while ($this->lexer->isNextToken(DocLexer::T_COMMA)) {
1037 if ($this->lexer->isNextToken(DocLexer::T_OPEN_CURLY_BRACES)) {
1041 if ($this->lexer->isNextToken(DocLexer::T_AT)) {
1045 if ($this->lexer->isNextToken(DocLexer::T_IDENTIFIER)) {
1111 if ($this->lexer->isNextToken(DocLexer::T_CLOSE_CURLY_BRACES)) {
1119 while ($this->lexer->isNextToken(DocLexer::T_COMMA)) {
[all …]
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
H A DAbstractLexer.php153 public function isNextToken($token) function in Doctrine\\Common\\Lexer\\AbstractLexer