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

/external/v8/src/
H A Dscanner-base.h283 Location(int b, int e) : beg_pos(b), end_pos(e) { }
284 Location() : beg_pos(0), end_pos(0) { }
287 return beg_pos >= 0 && end_pos >= beg_pos;
290 int beg_pos; member in struct:v8::internal::Scanner::Location
H A Dparser.cc372 int beg_pos = Read(PreparseDataConstants::kMessageStartPos); local
374 return Scanner::Location(beg_pos, end_pos);
646 int beg_loc = scanner().location().beg_pos;
778 source_location.beg_pos,
796 source_location.beg_pos,
1124 token_loc.end_pos - token_loc.beg_pos ==
1190 int statement_pos = scanner().peek_location().beg_pos;
1455 int function_token_position = scanner().location().beg_pos;
1621 position = scanner().location().beg_pos;
1987 int pos = scanner().location().beg_pos;
3881 CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) argument
[all...]

Completed in 279 milliseconds