Home
last modified time | relevance | path

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

/external/chromium/base/i18n/
Dchar_iterator.cc17 next_pos_(0), in UTF8CharIterator()
21 U8_NEXT(str_, next_pos_, len_, char_); in UTF8CharIterator()
31 array_pos_ = next_pos_; in Advance()
33 if (next_pos_ < len_) in Advance()
34 U8_NEXT(str_, next_pos_, len_, char_); in Advance()
43 next_pos_(0), in UTF16CharIterator()
54 next_pos_(0), in UTF16CharIterator()
68 array_pos_ = next_pos_; in Advance()
70 if (next_pos_ < len_) in Advance()
78 U16_NEXT(str_, next_pos_, len_, char_); in ReadChar()
Dchar_iterator.h65 int32 next_pos_; variable
116 int32 next_pos_; variable
/external/v8/src/
Dparser.h347 int position() { return next_pos_ - 1; } in position()
399 bool has_next() { return next_pos_ < in()->length(); } in has_next()
409 int next_pos_; variable
Dparser.cc4211 next_pos_(0), in RegExpParser()
4225 return in()->Get(next_pos_); in Next()
4233 if (next_pos_ < in()->length()) { in Advance()
4240 current_ = in()->Get(next_pos_); in Advance()
4241 next_pos_++; in Advance()
4251 next_pos_ = pos; in Reset()
4257 next_pos_ += dist - 1; in Advance()
4271 next_pos_ = in()->length(); in ReportError()