Lines Matching refs:__str

420       basic_string(const basic_string& __str);
427 basic_string(const basic_string& __str, size_type __pos,
436 basic_string(const basic_string& __str, size_type __pos,
485 operator=(const basic_string& __str)
486 { return this->assign(__str); }
757 operator+=(const basic_string& __str)
758 { return this->append(__str); }
787 append(const basic_string& __str);
802 append(const basic_string& __str, size_type __pos, size_type __n);
869 assign(const basic_string& __str);
884 assign(const basic_string& __str, size_type __pos, size_type __n)
885 { return this->assign(__str._M_data()
886 + __str._M_check(__pos, "basic_string::assign"),
887 __str._M_limit(__pos, __n)); }
988 insert(size_type __pos1, const basic_string& __str)
989 { return this->insert(__pos1, __str, size_type(0), __str.size()); }
1010 insert(size_type __pos1, const basic_string& __str,
1012 { return this->insert(__pos1, __str._M_data()
1013 + __str._M_check(__pos2, "basic_string::insert"),
1014 __str._M_limit(__pos2, __n)); }
1178 replace(size_type __pos, size_type __n, const basic_string& __str)
1179 { return this->replace(__pos, __n, __str._M_data(), __str.size()); }
1200 replace(size_type __pos1, size_type __n1, const basic_string& __str,
1202 { return this->replace(__pos1, __n1, __str._M_data()
1203 + __str._M_check(__pos2, "basic_string::replace"),
1204 __str._M_limit(__pos2, __n2)); }
1284 replace(iterator __i1, iterator __i2, const basic_string& __str)
1285 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); }
1562 find(const basic_string& __str, size_type __pos = 0) const
1563 { return this->find(__str.data(), __pos, __str.size()); }
1606 rfind(const basic_string& __str, size_type __pos = npos) const
1607 { return this->rfind(__str.data(), __pos, __str.size()); }
1664 find_first_of(const basic_string& __str, size_type __pos = 0) const
1665 { return this->find_first_of(__str.data(), __pos, __str.size()); }
1725 find_last_of(const basic_string& __str, size_type __pos = npos) const
1726 { return this->find_last_of(__str.data(), __pos, __str.size()); }
1786 find_first_not_of(const basic_string& __str, size_type __pos = 0) const
1787 { return this->find_first_not_of(__str.data(), __pos, __str.size()); }
1845 find_last_not_of(const basic_string& __str, size_type __pos = npos) const
1846 { return this->find_last_not_of(__str.data(), __pos, __str.size()); }
1924 compare(const basic_string& __str) const
1927 const size_type __osize = __str.size();
1930 int __r = traits_type::compare(_M_data(), __str.data(), __len);
1954 compare(size_type __pos, size_type __n, const basic_string& __str) const;
1978 compare(size_type __pos1, size_type __n1, const basic_string& __str,
2069 basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
2070 __str.append(__rhs);
2071 return __str;
2106 basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
2107 __str.append(__rhs);
2108 return __str;
2123 __string_type __str(__lhs);
2124 __str.append(__size_type(1), __rhs);
2125 return __str;
2377 basic_string<_CharT, _Traits, _Alloc>& __str);
2381 operator>>(basic_istream<char>& __is, basic_string<char>& __str);
2395 const basic_string<_CharT, _Traits, _Alloc>& __str);
2413 basic_string<_CharT, _Traits, _Alloc>& __str, _CharT __delim);
2430 basic_string<_CharT, _Traits, _Alloc>& __str);
2434 getline(basic_istream<char>& __in, basic_string<char>& __str,
2440 getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str,