Home
last modified time | relevance | path

Searched refs:JSTokenType (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
DJSParser.h48 enum JSTokenType { enum
154 JSTokenType m_type;
DLexer.h56 JSTokenType lex(JSTokenData* lvalp, JSTokenInfo* llocp, LexType, bool strictMode);
112 ALWAYS_INLINE JSTokenType parseIdentifier(JSTokenData*, LexType);
DLexer.cpp402 ALWAYS_INLINE JSTokenType Lexer::parseIdentifier(JSTokenData* lvalp, LexType lexType) in parseIdentifier()
449 return entry ? static_cast<JSTokenType>(entry->lexerValue()) : IDENT; in parseIdentifier()
715 JSTokenType Lexer::lex(JSTokenData* lvalp, JSTokenInfo* llocp, LexType lexType, bool strictMode) in lex()
721 JSTokenType token = ERRORTOK; in lex()
DJSParser.cpp114 bool consume(JSTokenType expected) in consume()
122 bool match(JSTokenType expected) in match()
225 ALWAYS_INLINE int isBinaryOperator(JSTokenType token);
1640 ALWAYS_INLINE static bool isUnaryOp(JSTokenType token) in isUnaryOp()
1645 int JSParser::isBinaryOperator(JSTokenType token) in isBinaryOperator()