Home | History | Annotate | Download | only in url

Lines Matching refs:str_len

110   void Append(const T* str, int str_len) {
111 if (cur_len_ + str_len > buffer_len_) {
112 if (!Grow(cur_len_ + str_len - buffer_len_))
115 for (int i = 0; i < str_len; i++)
117 cur_len_ += str_len;