HomeSort by relevance Sort by last modified time
    Searched refs:cur_len_ (Results 1 - 2 of 2) sorted by null

  /external/chromium/googleurl/src/
url_canon_stdstring.h 63 cur_len_ = static_cast<int>(str_->size()); // Append to existing data.
74 str_->resize(cur_len_);
75 buffer_len_ = cur_len_;
url_canon.h 53 CanonOutputT() : buffer_(NULL), buffer_len_(0), cur_len_(0) {
59 // pointer to point to the new buffer, and any old data up to |cur_len_| in
79 return cur_len_;
108 cur_len_ = new_len;
116 if (cur_len_ < buffer_len_) {
117 buffer_[cur_len_] = ch;
118 cur_len_++;
128 buffer_[cur_len_] = ch;
129 cur_len_++;
134 if (cur_len_ + str_len > buffer_len_)
162 int cur_len_; member in class:url_canon::CanonOutputT
    [all...]

Completed in 22 milliseconds