/external/chromium_org/v8/src/ |
preparser.cc | 41 #include "preparser.h" 58 PreParser::PreParseResult PreParser::PreParseLazyFunction( 89 // See preparser-data.h for the data. 91 // The PreParser checks that the syntax follows the grammar for JavaScript, 100 void PreParser::ReportUnexpectedToken(Token::Value token) { 139 PreParser::Statement PreParser::ParseSourceElement(bool* ok) { 163 PreParser::SourceElements PreParser::ParseSourceElements(int end_token [all...] |
preparser.h | 213 // The PreParser checks that the syntax follows the grammar for JavaScript, 221 class PreParser : public ParserBase { 228 PreParser(Scanner* scanner, 238 ~PreParser() {} 273 // are either being counted in the preparser data, or is important 382 PreParser::Identifier AsIdentifier() { 383 return PreParser::Identifier( 384 static_cast<PreParser::Identifier::Type>(code_ >> kIdentifierShift)); 649 // Logs the currently parsed literal as a symbol in the preparser data.
|
parser.h | 36 #include "preparser.h" 152 // This interface is here instead of in preparser.h because it instantiates a 153 // preparser recorder object that is suited to the parser's purposes. Also, 154 // the preparser doesn't know about ScriptDataImpl. 754 PreParser::PreParseResult LazyParseFunctionLiteral( 766 PreParser* reusable_preparser_;
|
parser.cc | 40 #include "preparser.h" 255 // This might also happen if there is no preparser symbol data, even 256 // if there is some preparser data. [all...] |
/external/v8/src/ |
preparser.cc | 41 #include "preparser.h" 53 namespace preparser { namespace in namespace:v8 55 PreParser::PreParseResult PreParser::PreParseLazyFunction( 85 // See preparser-data.h for the data. 87 // The PreParser checks that the syntax follows the grammar for JavaScript, 96 void PreParser::ReportUnexpectedToken(i::Token::Value token) { 130 void PreParser::CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) { 147 PreParser::Statement PreParser::ParseSourceElement(bool* ok) [all...] |
preparser-api.cc | 33 #include "../include/v8-preparser.h" 43 #include "preparser.h" 148 // It's only used by the real parser based on preparser data. 173 // or here (for a stand-alone preparser). 194 preparser::PreParser::PreParseResult result = 195 preparser::PreParser::PreParseProgram(&scanner, 199 if (result == preparser::PreParser::kPreParseStackOverflow) [all...] |
preparser.h | 41 namespace preparser { namespace in namespace:v8 49 // The PreParser checks that the syntax follows the grammar for JavaScript, 107 class PreParser { 115 PreParser(i::Scanner* scanner, 134 ~PreParser() {} 147 return PreParser(scanner, log, stack_limit, allow_lazy, 204 // are either being counted in the preparser data, or is important 308 PreParser::Identifier AsIdentifier() { 309 return PreParser::Identifier( 310 static_cast<PreParser::Identifier::Type>(code_ >> kIdentifierShift)) [all...] |
parser.h | 36 #include "preparser.h" 174 // Generic preparser generating full preparse data. 179 // Preparser that only does preprocessing that makes sense if only used 806 preparser::PreParser::PreParseResult LazyParseFunctionLiteral( 818 preparser::PreParser* reusable_preparser_;
|
parser.cc | 40 #include "preparser.h" 252 // This might also happen if there is no preparser symbol data, even 253 // if there is some preparser data. [all...] |
/external/v8/test/cctest/ |
test-parsing.cc | 39 #include "preparser.h" 266 v8::preparser::PreParser::PreParseResult result = 267 v8::preparser::PreParser::PreParseProgram(&scanner, 271 CHECK_EQ(v8::preparser::PreParser::kPreParseSuccess, result); 302 v8::preparser::PreParser::PreParseResult result = 303 v8::preparser::PreParser::PreParseProgram(&scanner [all...] |
/external/chromium_org/v8/test/cctest/ |
test-parsing.cc | 39 #include "preparser.h" 269 i::PreParser preparser(&scanner, &log, stack_limit); 270 preparser.set_allow_lazy(true); 271 preparser.set_allow_natives_syntax(true); 272 i::PreParser::PreParseResult result = preparser.PreParseProgram(); 273 CHECK_EQ(i::PreParser::kPreParseSuccess, result); 303 // Preparser defaults to disallowing natives syntax. 304 i::PreParser preparser(&scanner, &log, stack_limit) [all...] |
/external/skia/tests/ |
SkpSkGrTest.cpp | 481 class PreParser { 483 PreParser(int dirNo) 592 PreParser preParser(dirNo); 601 if (preParser.match(filename, &statusStream, &state.fResult)) {
|
PathOpsSkpClipTest.cpp | 450 class PreParser { 452 PreParser(int dirNo) 537 PreParser preParser(dirNo); 546 if (preParser.match(filename, &statusStream, &state->fResult)) {
|