Home
last modified time | relevance | path

Searched refs:next_pos_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/regexp/
Dregexp-parser.cc26 next_pos_(0), in RegExpParser()
42 return in()->Get(next_pos_); in Next()
50 if (next_pos_ < in()->length()) { in Advance()
57 current_ = in()->Get(next_pos_); in Advance()
58 next_pos_++; in Advance()
60 if (unicode_ && next_pos_ < in()->length() && in Advance()
62 uc16 trail = in()->Get(next_pos_); in Advance()
66 next_pos_++; in Advance()
74 next_pos_ = in()->length() + 1; in Advance()
81 next_pos_ = pos; in Reset()
[all …]
Dregexp-parser.h184 int position() { return next_pos_ - 1; } in position()
250 bool has_next() { return next_pos_ < in()->length(); } in has_next()
261 int next_pos_; variable