Home
last modified time | relevance | path

Searched refs:LexType (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
DLexer.h55 enum LexType { IdentifyReservedWords, IgnoreReservedWords }; enum
56 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()
715 JSTokenType Lexer::lex(JSTokenData* lvalp, JSTokenInfo* llocp, LexType lexType, bool strictMode) in lex()
DJSParser.cpp101 void next(Lexer::LexType lexType = Lexer::IdentifyReservedWords) in next()