Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dpreparser.cc148 #define CHECK_OK ok); \ macro
189 Statement statement = ParseSourceElement(CHECK_OK); in ParseSourceElements()
202 #undef CHECK_OK
203 #define CHECK_OK ok); \ macro
284 Statement statement = ParseFunctionDeclaration(CHECK_OK); in ParseStatement()
312 Expect(Token::FUNCTION, CHECK_OK); in ParseFunctionDeclaration()
317 &is_strict_reserved, CHECK_OK); in ParseFunctionDeclaration()
325 CHECK_OK); in ParseFunctionDeclaration()
337 Expect(Token::LBRACE, CHECK_OK); in ParseBlock()
340 ParseSourceElement(CHECK_OK); in ParseBlock()
[all …]
Dparser.cc387 #define CHECK_OK ok); \ macro
1069 stat = ParseModuleElement(NULL, CHECK_OK); in ParseSourceElements()
1071 stat = ParseBlockElement(NULL, CHECK_OK); in ParseSourceElements()
1151 Statement* stmt = ParseStatement(labels, CHECK_OK); in ParseModuleElement()
1177 Handle<String> name = ParseIdentifier(kDontAllowEvalOrArguments, CHECK_OK); in ParseModuleDeclaration()
1184 Module* module = ParseModule(CHECK_OK); in ParseModuleDeclaration()
1188 Declare(declaration, true, CHECK_OK); in ParseModuleDeclaration()
1219 Expect(Token::ASSIGN, CHECK_OK); in ParseModule()
1220 Module* result = ParseModulePath(CHECK_OK); in ParseModule()
1221 ExpectSemicolon(CHECK_OK); in ParseModule()
[all …]
Dpreparser.h1340 #define CHECK_OK ok); \ macro
1391 IdentifierT name = ParseIdentifier(kAllowEvalOrArguments, CHECK_OK); in ParsePrimaryExpression()
1403 result = this->ParseRegExpLiteral(true, CHECK_OK); in ParsePrimaryExpression()
1407 result = this->ParseRegExpLiteral(false, CHECK_OK); in ParsePrimaryExpression()
1411 result = this->ParseArrayLiteral(CHECK_OK); in ParsePrimaryExpression()
1415 result = this->ParseObjectLiteral(CHECK_OK); in ParsePrimaryExpression()
1423 result = this->ParseExpression(true, CHECK_OK); in ParsePrimaryExpression()
1424 Expect(Token::RPAREN, CHECK_OK); in ParsePrimaryExpression()
1429 result = this->ParseV8Intrinsic(CHECK_OK); in ParsePrimaryExpression()
1453 ExpressionT result = this->ParseAssignmentExpression(accept_IN, CHECK_OK); in ParseExpression()
[all …]