/external/v8/src/ |
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...] |
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_;
|
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.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...] |
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...] |
messages.js | 218 "invalid_preparser_data", ["Invalid preparser data for function ", "%0"], [all...] |
/external/chromium_org/v8/tools/ |
android-sync.sh | 106 sync_dir test/preparser
|
/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/v8/ |
Makefile | 122 preparser/preparser.gyp samples/samples.gyp src/d8.gyp \
|
Android.v8common.mk | 68 src/preparser.cc \
|
/external/chromium_org/v8/tools/gyp/ |
v8_base.arm.host.darwin-arm.mk | 135 v8/src/preparser.cc \
|
v8_base.arm.host.linux-arm.mk | 135 v8/src/preparser.cc \
|
v8_base.ia32.host.darwin-x86.mk | 135 v8/src/preparser.cc \
|
v8_base.ia32.host.linux-x86.mk | 135 v8/src/preparser.cc \
|
v8_base.mipsel.host.darwin-mips.mk | 135 v8/src/preparser.cc \
|
v8_base.mipsel.host.linux-mips.mk | 135 v8/src/preparser.cc \
|
v8_base.arm.target.darwin-arm.mk | 136 v8/src/preparser.cc \
|
v8_base.arm.target.linux-arm.mk | 136 v8/src/preparser.cc \
|
v8_base.ia32.target.darwin-x86.mk | 136 v8/src/preparser.cc \
|
v8_base.ia32.target.linux-x86.mk | 136 v8/src/preparser.cc \
|
v8_base.mipsel.target.darwin-mips.mk | 136 v8/src/preparser.cc \
|
v8_base.mipsel.target.linux-mips.mk | 136 v8/src/preparser.cc \
|
/external/chromium_org/v8/src/ |
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...] |
messages.js | 153 invalid_preparser_data: ["Invalid preparser data for function ", "%0"], [all...] |