Searched refs:preparser (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/v8/src/
H A Dpreparser-api.cc33 #include "../include/v8-preparser.h"
43 #include "preparser.h"
148 // It's only used by the real parser based on preparser data.
184 preparser::PreParser preparser(&scanner, &recorder, stack_limit);
185 preparser.set_allow_lazy(true);
186 preparser::PreParser::PreParseResult result = preparser.PreParseProgram();
187 if (result == preparser::PreParser::kPreParseStackOverflow) {
H A Dparser.cc40 #include "preparser.h"
255 // This might also happen if there is no preparser symbol data, even
256 // if there is some preparser data.
4402 // body. The preparser data contains the information we need to
4424 // With no preparser data, we partially parse the function, without
4428 preparser::PreParser::PreParseResult result =
4430 if (result == preparser::PreParser::kPreParseStackOverflow) {
4585 preparser::PreParser::PreParseResult Parser::LazyParseFunctionLiteral(
4592 reusable_preparser_ = new preparser::PreParser(&scanner_,
4604 preparser
[all...]
H A Dpreparser.h41 namespace preparser { namespace in namespace:v8
232 // are either being counted in the preparser data, or is important
607 // Logs the currently parsed literal as a symbol in the preparser data.
695 } } // v8::preparser
H A Dparser.h36 #include "preparser.h"
170 // This interface is here instead of in preparser.h because it instantiates a
171 // preparser recorder object that is suited to the parser's purposes. Also,
172 // the preparser doesn't know about ScriptDataImpl.
844 preparser::PreParser::PreParseResult LazyParseFunctionLiteral(
856 preparser::PreParser* reusable_preparser_;
/external/chromium_org/v8/test/cctest/
H A Dtest-parsing.cc39 #include "preparser.h"
266 v8::preparser::PreParser preparser(&scanner, &log, stack_limit);
267 preparser.set_allow_lazy(true);
268 preparser.set_allow_natives_syntax(true);
269 v8::preparser::PreParser::PreParseResult result =
270 preparser.PreParseProgram();
271 CHECK_EQ(v8::preparser::PreParser::kPreParseSuccess, result);
302 v8::preparser::PreParser preparser(
[all...]
/external/v8/src/
H A Dpreparser-api.cc33 #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) {
H A Dpreparser.h41 namespace preparser { namespace in namespace:v8
204 // are either being counted in the preparser data, or is important
573 // Logs the currently parsed literal as a symbol in the preparser data.
659 } } // v8::preparser
H A Dparser.h36 #include "preparser.h"
174 // Generic preparser generating full preparse data.
806 preparser::PreParser::PreParseResult LazyParseFunctionLiteral(
818 preparser::PreParser* reusable_preparser_;
H A Dparser.cc40 #include "preparser.h"
252 // This might also happen if there is no preparser symbol data, even
253 // if there is some preparser data.
4496 // the preparser data contains the information we need to construct the
4520 // With no preparser data, we partially parse the function, without
4524 preparser::PreParser::PreParseResult result =
4526 if (result == preparser::PreParser::kPreParseStackOverflow) {
4654 preparser::PreParser::PreParseResult Parser::LazyParseFunctionLiteral(
4662 reusable_preparser_ = new preparser::PreParser(&scanner_,
4669 preparser
[all...]
/external/chromium_org/v8/tools/
H A Dandroid-sync.sh91 sync_file "$OUTDIR/$ARCH_MODE/preparser"
105 sync_dir test/preparser
/external/v8/test/cctest/
H A Dtest-parsing.cc39 #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,
307 CHECK_EQ(v8::preparser::PreParser::kPreParseSuccess, result);
404 v8::preparser::PreParser::PreParseResult result =
405 v8::preparser::PreParser::PreParseProgram(&scanner,
409 CHECK_EQ(v8::preparser
[all...]
/external/v8/
H A DMakefile122 preparser/preparser.gyp samples/samples.gyp src/d8.gyp \
H A DAndroid.v8common.mk68 src/preparser.cc \
/external/chromium_org/v8/
H A DMakefile220 build/toolchain.gypi preparser/preparser.gyp samples/samples.gyp \
/external/chromium_org/v8/tools/gyp/
H A Dv8_base.arm.host.darwin-arm.mk123 v8/src/preparser.cc \
H A Dv8_base.arm.host.linux-arm.mk123 v8/src/preparser.cc \
H A Dv8_base.ia32.host.darwin-x86.mk123 v8/src/preparser.cc \
H A Dv8_base.ia32.host.linux-x86.mk123 v8/src/preparser.cc \
H A Dv8_base.mipsel.host.darwin-mips.mk123 v8/src/preparser.cc \
H A Dv8_base.mipsel.host.linux-mips.mk123 v8/src/preparser.cc \
H A Dv8_base.arm.target.darwin-arm.mk124 v8/src/preparser.cc \
H A Dv8_base.arm.target.linux-arm.mk124 v8/src/preparser.cc \
H A Dv8_base.ia32.target.darwin-x86.mk124 v8/src/preparser.cc \
H A Dv8_base.ia32.target.linux-x86.mk124 v8/src/preparser.cc \
H A Dv8_base.mipsel.target.darwin-mips.mk124 v8/src/preparser.cc \

Completed in 487 milliseconds

12