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

1 2

  /external/v8/build/
all.gyp 11 '../preparser/preparser.gyp:*',
  /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...]
v8preparserdll-main.cc 30 #include "../include/v8-preparser.h"
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_;
SConscript 106 preparser.cc
252 preparser.cc
253 preparser-api.cc
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...]
preparse-data.h 39 // ParserRecorder - Logging of preparser data.
  /external/v8/test/preparser/
preparser.expectation 1 # Expectations for .js preparser tests.
testcfg.py 79 return ['preparser']
82 expects_file = join(self.root, 'preparser.expectation')
123 executable = 'preparser'
128 executable = join('obj', 'preparser', mode, 'preparser')
134 # Find all .js files in tests/preparser directory.
144 # Find all .pyt files in test/preparser directory.
155 status_file = join(self.root, 'preparser.status')
preparser.status 28 prefix preparser
strict-identifiers.pyt 277 # the preparser never sees that 'const' was intended to be a label.
  /external/v8/preparser/
SConscript 33 env.Replace(**context.flags['preparser'])
35 return env.Object('preparser-process.cc')
preparser.gyp 32 'target_name': 'preparser',
38 'preparser-process.cc',
preparser-process.cc 34 #include "../include/v8-preparser.h"
40 // This file is only used for testing the stand-alone preparser
53 // successful, the resulting preparser data is written to stdout.
204 // Print preparser data to stdout.
299 // Format: preparser (<scriptfile> | -e "<source>")
  /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/include/
v8-preparser.h 108 // space that the preparser is allowed to use. If the preparser uses
110 // method will return true. Otherwise the result contains preparser
  /external/bison/tests/
Makefile.am 92 PREBISON='$(VALGRIND_PREBISON)' PREPARSER='$(VALGRIND) -q' \
  /external/v8/
SConstruct     [all...]
Makefile 122 preparser/preparser.gyp samples/samples.gyp src/d8.gyp \
Android.v8common.mk 68 src/preparser.cc \
  /external/v8/tools/gyp/
v8.gyp 406 '../../src/preparser.cc',
407 '../../src/preparser.h',
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObjectFunctions.cpp 448 LiteralParser preparser(exec, s, LiteralParser::NonStrictJSON);
449 if (JSValue parsedObject = preparser.tryLiteralParse())
  /external/v8/tools/
presubmit.py 226 return ['src', 'preparser', 'include', 'samples', join('test', 'cctest')]

Completed in 608 milliseconds

1 2