Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dpreparser.cc165 #define CHECK_OK ok); \ macro
213 Statement statement = ParseSourceElement(CHECK_OK); in ParseSourceElements()
226 #undef CHECK_OK
227 #define CHECK_OK ok); \ macro
303 Statement statement = ParseFunctionDeclaration(CHECK_OK); in ParseStatement()
317 return ParseClassDeclaration(CHECK_OK); in ParseStatement()
344 Expect(Token::FUNCTION, CHECK_OK); in ParseFunctionDeclaration()
349 &is_strict_reserved, CHECK_OK); in ParseFunctionDeclaration()
354 FunctionLiteral::NORMAL_ARITY, CHECK_OK); in ParseFunctionDeclaration()
360 Expect(Token::CLASS, CHECK_OK); in ParseClassDeclaration()
[all …]
Dparser.cc330 #define CHECK_OK ok); \ macro
1073 stat = ParseModuleElement(NULL, CHECK_OK); in ParseSourceElements()
1075 stat = ParseBlockElement(NULL, CHECK_OK); in ParseSourceElements()
1173 Statement* stmt = ParseStatement(labels, CHECK_OK); in ParseModuleElement()
1200 ParseIdentifier(kDontAllowEvalOrArguments, CHECK_OK); in ParseModuleDeclaration()
1207 Module* module = ParseModule(CHECK_OK); in ParseModuleDeclaration()
1211 Declare(declaration, true, CHECK_OK); in ParseModuleDeclaration()
1241 Expect(Token::ASSIGN, CHECK_OK); in ParseModule()
1242 Module* result = ParseModulePath(CHECK_OK); in ParseModule()
1243 ExpectSemicolon(CHECK_OK); in ParseModule()
[all …]
Dpreparser.h1735 #define CHECK_OK ok); \ macro
1788 IdentifierT name = ParseIdentifier(kAllowEvalOrArguments, CHECK_OK); in ParsePrimaryExpression()
1800 result = this->ParseRegExpLiteral(true, CHECK_OK); in ParsePrimaryExpression()
1804 result = this->ParseRegExpLiteral(false, CHECK_OK); in ParsePrimaryExpression()
1808 result = this->ParseArrayLiteral(CHECK_OK); in ParsePrimaryExpression()
1812 result = this->ParseObjectLiteral(CHECK_OK); in ParsePrimaryExpression()
1822 pos, this->EmptyArrowParamList(), CHECK_OK); in ParsePrimaryExpression()
1827 result = this->ParseExpression(true, CHECK_OK); in ParsePrimaryExpression()
1829 Expect(Token::RPAREN, CHECK_OK); in ParsePrimaryExpression()
1841 CHECK_OK); in ParsePrimaryExpression()
[all …]