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 54 CanonOutputT() : buffer_(NULL), buffer_len_(0), cur_len_(0) {
60 // pointer to point to the new buffer, and any old data up to |cur_len_| in
80 return cur_len_;
109 cur_len_ = new_len;
117 if (cur_len_ < buffer_len_) {
118 buffer_[cur_len_] = ch;
119 cur_len_++;
129 buffer_[cur_len_] = ch;
130 cur_len_++;
135 if (cur_len_ + str_len > buffer_len_)
163 int cur_len_; member in class:url_canon::CanonOutputT
    [all...]

Completed in 32 milliseconds