Lines Matching refs:__s

101     basic_string(const basic_string& __s, const _Allocator& __a)
102 : _Base(__s, __a) { }
104 basic_string(basic_string&& __s, const _Allocator& __a)
105 : _Base(std::move(__s), __a) { }
126 basic_string(const _CharT* __s, size_type __n,
128 : _Base(__gnu_debug::__check_string(__s, __n), __n, __a) { }
130 basic_string(const _CharT* __s, const _Allocator& __a = _Allocator())
131 : _Base(__gnu_debug::__check_string(__s), __a)
132 { this->assign(__s); }
162 operator=(const _CharT* __s)
164 __glibcxx_check_string(__s);
165 _M_base() = __s;
329 operator+=(const _CharT* __s)
331 __glibcxx_check_string(__s);
332 _M_base() += __s;
372 append(const _CharT* __s, size_type __n)
374 __glibcxx_check_string_len(__s, __n);
375 _Base::append(__s, __n);
381 append(const _CharT* __s)
383 __glibcxx_check_string(__s);
384 _Base::append(__s);
451 assign(const _CharT* __s, size_type __n)
453 __glibcxx_check_string_len(__s, __n);
454 _Base::assign(__s, __n);
460 assign(const _CharT* __s)
462 __glibcxx_check_string(__s);
463 _Base::assign(__s);
521 insert(size_type __pos, const _CharT* __s, size_type __n)
523 __glibcxx_check_string(__s);
524 _Base::insert(__pos, __s, __n);
530 insert(size_type __pos, const _CharT* __s)
532 __glibcxx_check_string(__s);
533 _Base::insert(__pos, __s);
646 replace(size_type __pos, size_type __n1, const _CharT* __s,
649 __glibcxx_check_string_len(__s, __n2);
650 _Base::replace(__pos, __n1, __s, __n2);
656 replace(size_type __pos, size_type __n1, const _CharT* __s)
658 __glibcxx_check_string(__s);
659 _Base::replace(__pos, __n1, __s);
682 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n)
685 __glibcxx_check_string_len(__s, __n);
686 _Base::replace(__i1.base(), __i2.base(), __s, __n);
692 replace(iterator __i1, iterator __i2, const _CharT* __s)
695 __glibcxx_check_string(__s);
696 _Base::replace(__i1.base(), __i2.base(), __s);
743 copy(_CharT* __s, size_type __n, size_type __pos = 0) const
745 __glibcxx_check_string_len(__s, __n);
746 return _Base::copy(__s, __n, __pos);
782 find(const _CharT* __s, size_type __pos, size_type __n) const
784 __glibcxx_check_string(__s);
785 return _Base::find(__s, __pos, __n);
789 find(const _CharT* __s, size_type __pos = 0) const
791 __glibcxx_check_string(__s);
792 return _Base::find(__s, __pos);
805 rfind(const _CharT* __s, size_type __pos, size_type __n) const
807 __glibcxx_check_string_len(__s, __n);
808 return _Base::rfind(__s, __pos, __n);
812 rfind(const _CharT* __s, size_type __pos = _Base::npos) const
814 __glibcxx_check_string(__s);
815 return _Base::rfind(__s, __pos);
828 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
830 __glibcxx_check_string(__s);
831 return _Base::find_first_of(__s, __pos, __n);
835 find_first_of(const _CharT* __s, size_type __pos = 0) const
837 __glibcxx_check_string(__s);
838 return _Base::find_first_of(__s, __pos);
851 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
853 __glibcxx_check_string(__s);
854 return _Base::find_last_of(__s, __pos, __n);
858 find_last_of(const _CharT* __s, size_type __pos = _Base::npos) const
860 __glibcxx_check_string(__s);
861 return _Base::find_last_of(__s, __pos);
875 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
877 __glibcxx_check_string_len(__s, __n);
878 return _Base::find_first_not_of(__s, __pos, __n);
882 find_first_not_of(const _CharT* __s, size_type __pos = 0) const
884 __glibcxx_check_string(__s);
885 return _Base::find_first_not_of(__s, __pos);
899 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
901 __glibcxx_check_string(__s);
902 return _Base::find_last_not_of(__s, __pos, __n);
906 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
908 __glibcxx_check_string(__s);
909 return _Base::find_last_not_of(__s, __pos);
936 compare(const _CharT* __s) const
938 __glibcxx_check_string(__s);
939 return _Base::compare(__s);
945 compare(size_type __pos1, size_type __n1, const _CharT* __s) const
947 __glibcxx_check_string(__s);
948 return _Base::compare(__pos1, __n1, __s);
954 compare(size_type __pos1, size_type __n1,const _CharT* __s,
957 __glibcxx_check_string_len(__s, __n2);
958 return _Base::compare(__pos1, __n1, __s, __n2);