Searched defs:beg_pos (Results 1 - 6 of 6) sorted by relevance

/external/v8/preparser/
H A Dpreparser-process.cc151 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(), reade
[all...]
/external/v8/src/
H A Djson-parser.h354 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...]
H A Dpreparser.cc64 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) { argument
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, afte
1579 CheckDelayedStrictModeViolation(int beg_pos, int end_pos, bool* ok) argument
[all...]
H A Dscanner.h302 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);
H A Dscopes.cc706 int beg_pos = scope->start_position(); local
708 ASSERT(beg_pos >= 0 && end_pos >= 0);
709 if (beg_pos <= position && position < end_pos) {
H A Dparser.cc372 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,
1144 token_loc.end_pos - token_loc.beg_pos ==
1315 scope->set_start_position(scanner().location().beg_pos);
1388 factory(), name, scanner().location().beg_pos, Interface::NewModule());
1597 int statement_pos = scanner().peek_location().beg_pos;
1708 factory(), name, scanner().location().beg_pos, interfac
4864 CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) argument
[all...]

Completed in 145 milliseconds