Lines Matching refs:__s

94     basic_string(const _CharT* __s, size_type __n,
96 : _Base(__gnu_debug::__check_string(__s, __n), __n, __a)
99 basic_string(const _CharT* __s, const _Allocator& __a = _Allocator())
100 : _Base(__gnu_debug::__check_string(__s), __a)
101 { this->assign(__s); }
138 operator=(const _CharT* __s)
140 __glibcxx_check_string(__s);
141 *static_cast<_Base*>(this) = __s;
313 operator+=(const _CharT* __s)
315 __glibcxx_check_string(__s);
316 _M_base() += __s;
356 append(const _CharT* __s, size_type __n)
358 __glibcxx_check_string_len(__s, __n);
359 _Base::append(__s, __n);
365 append(const _CharT* __s)
367 __glibcxx_check_string(__s);
368 _Base::append(__s);
428 assign(const _CharT* __s, size_type __n)
430 __glibcxx_check_string_len(__s, __n);
431 _Base::assign(__s, __n);
437 assign(const _CharT* __s)
439 __glibcxx_check_string(__s);
440 _Base::assign(__s);
492 insert(size_type __pos, const _CharT* __s, size_type __n)
494 __glibcxx_check_string(__s);
495 _Base::insert(__pos, __s, __n);
501 insert(size_type __pos, const _CharT* __s)
503 __glibcxx_check_string(__s);
504 _Base::insert(__pos, __s);
611 replace(size_type __pos, size_type __n1, const _CharT* __s,
614 __glibcxx_check_string_len(__s, __n2);
615 _Base::replace(__pos, __n1, __s, __n2);
621 replace(size_type __pos, size_type __n1, const _CharT* __s)
623 __glibcxx_check_string(__s);
624 _Base::replace(__pos, __n1, __s);
647 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n)
650 __glibcxx_check_string_len(__s, __n);
651 _Base::replace(__i1.base(), __i2.base(), __s, __n);
657 replace(iterator __i1, iterator __i2, const _CharT* __s)
660 __glibcxx_check_string(__s);
661 _Base::replace(__i1.base(), __i2.base(), __s);
699 copy(_CharT* __s, size_type __n, size_type __pos = 0) const
701 __glibcxx_check_string_len(__s, __n);
702 return _Base::copy(__s, __n, __pos);
739 find(const _CharT* __s, size_type __pos, size_type __n) const
741 __glibcxx_check_string(__s);
742 return _Base::find(__s, __pos, __n);
746 find(const _CharT* __s, size_type __pos = 0) const
748 __glibcxx_check_string(__s);
749 return _Base::find(__s, __pos);
762 rfind(const _CharT* __s, size_type __pos, size_type __n) const
764 __glibcxx_check_string_len(__s, __n);
765 return _Base::rfind(__s, __pos, __n);
769 rfind(const _CharT* __s, size_type __pos = _Base::npos) const
771 __glibcxx_check_string(__s);
772 return _Base::rfind(__s, __pos);
785 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
787 __glibcxx_check_string(__s);
788 return _Base::find_first_of(__s, __pos, __n);
792 find_first_of(const _CharT* __s, size_type __pos = 0) const
794 __glibcxx_check_string(__s);
795 return _Base::find_first_of(__s, __pos);
808 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
810 __glibcxx_check_string(__s);
811 return _Base::find_last_of(__s, __pos, __n);
815 find_last_of(const _CharT* __s, size_type __pos = _Base::npos) const
817 __glibcxx_check_string(__s);
818 return _Base::find_last_of(__s, __pos);
832 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
834 __glibcxx_check_string_len(__s, __n);
835 return _Base::find_first_not_of(__s, __pos, __n);
839 find_first_not_of(const _CharT* __s, size_type __pos = 0) const
841 __glibcxx_check_string(__s);
842 return _Base::find_first_not_of(__s, __pos);
856 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
858 __glibcxx_check_string(__s);
859 return _Base::find_last_not_of(__s, __pos, __n);
863 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
865 __glibcxx_check_string(__s);
866 return _Base::find_last_not_of(__s, __pos);
893 compare(const _CharT* __s) const
895 __glibcxx_check_string(__s);
896 return _Base::compare(__s);
902 compare(size_type __pos1, size_type __n1, const _CharT* __s) const
904 __glibcxx_check_string(__s);
905 return _Base::compare(__pos1, __n1, __s);
911 compare(size_type __pos1, size_type __n1,const _CharT* __s,
914 __glibcxx_check_string_len(__s, __n2);
915 return _Base::compare(__pos1, __n1, __s, __n2);