Home | History | Annotate | Download | only in url

Lines Matching refs:str_

10     : CanonOutput(), str_(str) {
11 cur_len_ = static_cast<int>(str_->size()); // Append to existing data.
12 str_->resize(str_->capacity());
13 buffer_ = str_->empty() ? NULL : &(*str_)[0];
14 buffer_len_ = static_cast<int>(str_->size());
22 str_->resize(cur_len_);
27 str_->resize(sz);
28 buffer_ = str_->empty() ? NULL : &(*str_)[0];