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/
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)) {
886 if ($this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
1003 && $this->lexer->isNextToken(DocLexer::T_NAMESPACE_SEPARATOR)) {
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)) {
[all …]
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
DAbstractLexer.php153 public function isNextToken($token) function in Doctrine\\Common\\Lexer\\AbstractLexer