Home | History | Annotate | Download | only in ext

Lines Matching full:__str

184       __versa_string<_CharT, _Traits, _Alloc, _Base> __str;
185 __str.reserve(__lhs.size() + __rhs.size());
186 __str.append(__lhs);
187 __str.append(__rhs);
188 return __str;
201 __string_type __str;
202 __str.reserve(__len + __rhs.size());
203 __str.append(__lhs, __len);
204 __str.append(__rhs);
205 return __str;
214 __versa_string<_CharT, _Traits, _Alloc, _Base> __str;
215 __str.reserve(__rhs.size() + 1);
216 __str.push_back(__lhs);
217 __str.append(__rhs);
218 return __str;
231 __string_type __str;
232 __str.reserve(__lhs.size() + __len);
233 __str.append(__lhs);
234 __str.append(__rhs, __len);
235 return __str;
244 __versa_string<_CharT, _Traits, _Alloc, _Base> __str;
245 __str.reserve(__lhs.size() + 1);
246 __str.append(__lhs);
247 __str.push_back(__rhs);
248 return __str;
460 compare(size_type __pos, size_type __n, const __versa_string& __str) const
464 const size_type __osize = __str.size();
467 __str.data(), __len);
477 compare(size_type __pos1, size_type __n1, const __versa_string& __str,
481 __str._M_check(__pos2, "__versa_string::compare");
483 __n2 = __str
486 __str.data() + __pos2, __len);
554 _Alloc, _Base>& __str)
573 __str.erase();
578 : __str.max_size();
590 __str.append(__buf, sizeof(__buf) / sizeof(_CharT));
597 __str.append(__buf, __len);
628 __gnu_cxx::__versa_string<_CharT, _Traits, _Alloc, _Base>& __str,
639 const __size_type __n = __str.max_size();
647 __str.erase();
660 __str.append(__buf, sizeof(__buf) / sizeof(_CharT));
667 __str.append(__buf, __len);