HomeSort by relevance Sort by last modified time
    Searched refs:preparser (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/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.
184 preparser::PreParser preparser(&scanner, &recorder, stack_limit);
185 preparser.set_allow_lazy(true);
186 preparser::PreParser::PreParseResult result = preparser.PreParseProgram()
    [all...]
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...]
preparser.h 41 namespace preparser { namespace in namespace:v8
49 // The PreParser checks that the syntax follows the grammar for JavaScript,
112 class PreParser {
120 PreParser(i::Scanner* scanner,
136 ~PreParser() {}
232 // are either being counted in the preparser data, or is important
341 PreParser::Identifier AsIdentifier() {
342 return PreParser::Identifier(
343 static_cast<PreParser::Identifier::Type>(code_ >> kIdentifierShift));
607 // Logs the currently parsed literal as a symbol in the preparser data
    [all...]
parser.h 36 #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/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...]
  /external/chromium_org/v8/tools/
android-sync.sh 91 sync_file "$OUTDIR/$ARCH_MODE/preparser"
105 sync_dir test/preparser
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 39 #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)
    [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/v8/
Makefile 122 preparser/preparser.gyp samples/samples.gyp src/d8.gyp \
Android.v8common.mk 68 src/preparser.cc \
  /external/chromium_org/v8/
Makefile 220 build/toolchain.gypi preparser/preparser.gyp samples/samples.gyp \
  /external/chromium_org/v8/tools/gyp/
v8_base.arm.host.darwin-arm.mk 123 v8/src/preparser.cc \
v8_base.arm.host.linux-arm.mk 123 v8/src/preparser.cc \
v8_base.ia32.host.darwin-x86.mk 123 v8/src/preparser.cc \
v8_base.ia32.host.linux-x86.mk 123 v8/src/preparser.cc \
v8_base.mipsel.host.darwin-mips.mk 123 v8/src/preparser.cc \
v8_base.mipsel.host.linux-mips.mk 123 v8/src/preparser.cc \
v8_base.arm.target.darwin-arm.mk 124 v8/src/preparser.cc \
v8_base.arm.target.linux-arm.mk 124 v8/src/preparser.cc \
v8_base.ia32.target.darwin-x86.mk 124 v8/src/preparser.cc \
v8_base.ia32.target.linux-x86.mk 124 v8/src/preparser.cc \
v8_base.mipsel.target.darwin-mips.mk 124 v8/src/preparser.cc \

Completed in 218 milliseconds

1 2