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

  /external/v8/preparser/
preparser-process.cc 151 int beg_pos() { function in class:PreparseDataInterpreter
225 : throws(false), type(NULL), beg_pos(-1), end_pos(-1) { }
228 int beg_pos; member in struct:ExceptionExpectation
248 expects->type, actual_message, reader.beg_pos(), reader.end_pos());
251 if (expects->beg_pos >= 0) {
252 if (expects->beg_pos != reader.beg_pos()) {
254 expects->beg_pos, reader.beg_pos());
266 message, reader.beg_pos(), reader.end_pos())
    [all...]
  /external/v8/src/
json-parser.h 354 int beg_pos = position_; local
393 int length = position_ - beg_pos;
396 Vector<const char> chars(seq_source_->GetChars() + beg_pos, length);
403 String::WriteToFlat(*source_, buffer.start(), beg_pos, position_);
562 int beg_pos = position_; local
572 beg_pos,
577 beg_pos,
581 int length = position_ - beg_pos;
585 beg_pos,
590 String::WriteToFlat(*source_, dest, beg_pos, position_)
    [all...]
scanner.h 302 Location(int b, int e) : beg_pos(b), end_pos(e) { }
303 Location() : beg_pos(0), end_pos(0) { }
306 return beg_pos >= 0 && end_pos >= beg_pos;
311 int beg_pos; member in struct:v8::internal::Scanner::Location
356 int source_length = (location.end_pos - location.beg_pos);
preparser.cc 64 int start_position = scanner_->peek_location().beg_pos;
128 // Checks whether octal literal last seen is between beg_pos and end_pos.
130 void PreParser::CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) {
132 if (beg_pos <= octal.beg_pos && octal.end_pos <= end_pos) {
276 ReportMessageAt(start_location.beg_pos, end_location.end_pos,
405 ReportMessageAt(location.beg_pos, location.end_pos,
422 ReportMessageAt(location.beg_pos, location.end_pos,
431 ReportMessageAt(location.beg_pos, location.end_pos,
826 ReportMessageAt(before.beg_pos, after.end_pos
    [all...]
scanner.cc 233 next_.location.beg_pos = pos;
358 next_.location.beg_pos = source_pos();
596 if (pos == next_.location.beg_pos) return;
999 next_.location.beg_pos = source_pos() - (seen_equal ? 2 : 1);
preparser.h 491 int start_position = scanner_->peek_location().beg_pos;
507 log_->LogMessage(location.beg_pos, location.end_pos, type, name_opt);
516 void CheckOctalLiteral(int beg_pos, int end_pos, bool* ok);
639 void CheckDelayedStrictModeViolation(int beg_pos, int end_pos, bool* ok);
parser.cc 372 int beg_pos = Read(PreparseDataConstants::kMessageStartPos); local
374 return Scanner::Location(beg_pos, end_pos);
622 int beg_loc = scanner().location().beg_pos;
774 source_location.beg_pos,
792 source_location.beg_pos,
    [all...]
scopes.cc 706 int beg_pos = scope->start_position(); local
708 ASSERT(beg_pos >= 0 && end_pos >= 0);
709 if (beg_pos <= position && position < end_pos) {
    [all...]
parser.h 754 void CheckOctalLiteral(int beg_pos, int end_pos, bool* ok);
  /external/v8/test/cctest/
test-parsing.cc 230 CHECK_EQ(10, error_location.beg_pos);
    [all...]

Completed in 4850 milliseconds