HomeSort by relevance Sort by last modified time
    Searched refs:PreParser (Results 1 - 6 of 6) sorted by null

  /external/v8/src/
preparser.cc 18 #include "src/preparser.h"
121 PreParser::PreParseResult PreParser::PreParseLazyFunction(
153 // See preparser-data.h for the data.
155 // The PreParser checks that the syntax follows the grammar for JavaScript,
172 PreParser::Statement PreParser::ParseSourceElement(bool* ok) {
203 PreParser::SourceElements PreParser::ParseSourceElements(int end_token,
234 PreParser::Statement PreParser::ParseStatement(bool* ok)
    [all...]
preparser.h 21 // the differences between Parser and PreParser:
24 // PreParser functions return PreParserExpression.
27 // descent. PreParser doesn't create a tree. Instead, it passes around minimal
36 // pretenured, and PreParser doesn't care.
643 // Allow identifier->name()[->length()] to work. The preparser
769 // At the moment PreParser doesn't track these expression types.
789 // and PreParser.
792 // More dummy implementations of things PreParser doesn't need to track:
865 // PreParser doesn't need to.
929 // the PreParser does not need them
    [all...]
parser.h 13 #include "src/preparser.h"
814 // by parsing the function with PreParser. Consumes the ending }.
820 PreParser::PreParseResult ParseLazyFunctionBodyWithPreParser(
833 PreParser* reusable_preparser_;
    [all...]
parser.cc 17 #include "src/preparser.h"
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 40 #include "src/preparser.h"
158 i::PreParser preparser(&scanner, &log, stack_limit);
159 preparser.set_allow_lazy(true);
160 i::PreParser::PreParseResult result = preparser.PreParseProgram();
161 CHECK_EQ(i::PreParser::kPreParseSuccess, result);
172 i::PreParser preparser(&scanner, &log, stack_limit);
173 preparser.set_allow_lazy(true)
    [all...]
  /external/skia/tests/
SkpSkGrTest.cpp 482 class PreParser {
484 PreParser(int dirNo)
593 PreParser preParser(dirNo);
602 if (preParser.match(filename, &statusStream, &state.fResult)) {

Completed in 86 milliseconds