Lines Matching refs:token_end_
135 token_end_ = start_pos_; in Reset()
146 const_iterator token_end() const { return token_end_; } in token_end()
147 str token() const { return str(token_begin_, token_end_); } in token()
150 std::distance(token_begin_, token_end_)); in token_piece()
159 token_end_ = string_begin; in Init()
172 token_begin_ = token_end_; in QuickGetNext()
173 if (token_end_ == end_) in QuickGetNext()
175 ++token_end_; in QuickGetNext()
180 while (token_end_ != end_ && delims_.find(*token_end_) == str::npos) in QuickGetNext()
181 ++token_end_; in QuickGetNext()
190 token_begin_ = token_end_; in FullGetNext()
191 if (token_end_ == end_) in FullGetNext()
193 ++token_end_; in FullGetNext()
202 while (token_end_ != end_ && AdvanceOne(&state, *token_end_)) in FullGetNext()
203 ++token_end_; in FullGetNext()
242 const_iterator token_end_; variable