Home | History | Annotate | Download | only in ext

Lines Matching full:__str

183       __versa_string<_CharT, _Traits, _Alloc, _Base> __str;
184 __str.reserve(__lhs.size() + __rhs.size());
185 __str.append(__lhs);
186 __str.append(__rhs);
187 return __str;
200 __string_type __str;
201 __str.reserve(__len + __rhs.size());
202 __str.append(__lhs, __len);
203 __str.append(__rhs);
204 return __str;
213 __versa_string<_CharT, _Traits, _Alloc, _Base> __str;
214 __str.reserve(__rhs.size() + 1);
215 __str.push_back(__lhs);
216 __str.append(__rhs);
217 return __str;
230 __string_type __str;
231 __str.reserve(__lhs.size() + __len);
232 __str.append(__lhs);
233 __str.append(__rhs, __len);
234 return __str;
243 __versa_string<_CharT, _Traits, _Alloc, _Base> __str;
244 __str.reserve(__lhs.size() + 1);
245 __str.append(__lhs);
246 __str.push_back(__rhs);
247 return __str;
459 compare(size_type __pos, size_type __n, const __versa_string& __str) const
463 const size_type __osize = __str.size();
466 __str.data(), __len);
476 compare(size_type __pos1, size_type __n1, const __versa_string& __str,
480 __str._M_check(__pos2, "__versa_string::compare");
482 __n2 = __str._M_limit(__pos2, __n2);
485 __str.data() + __pos2, __len);
553 _Alloc, _Base>& __str)
572 __str.erase();
577 : __str.max_size();
589 __str.append(__buf, sizeof(__buf) / sizeof(_CharT));
596 __str.append(__buf, __len);
627 __gnu_cxx::__versa_string<_CharT, _Traits, _Alloc, _Base>& __str,
638 const __size_type __n = __str.max_size();
646 __str.erase();
659 __str.append(__buf, sizeof(__buf) / sizeof(_CharT));
666 __str.append(__buf, __len);