Home | History | Annotate | Download | only in stl

Lines Matching refs:_CharT

25 #define _STLP_NO_MEM_T_STRING_BASE _STLP_PRIV _STLP_NO_MEM_T_NAME(str)<_CharT, _Traits, _Alloc>
27 template <class _CharT, class _Traits, class _Alloc>
30 , public __stlport_class<basic_string<_CharT, _Traits, _Alloc> >
34 typedef basic_string<_CharT, _Traits, _Alloc> _Self;
62 basic_string(const _CharT* __s, size_type __n,
66 basic_string(const _CharT* __s,
70 basic_string(size_type __n, _CharT __c,
102 _Self& operator=(const _CharT* __s) {
107 _Self& operator=(_CharT __c) {
152 _Self& operator+=(const _CharT* __s) {
157 _Self& operator+=(_CharT __c) {
173 _Self& append(const _CharT* __s, size_type __n) {
178 _Self& append(const _CharT* __s) {
183 _Self& append(size_type __n, _CharT __c) {
198 _Self& append(const _CharT* __f, const _CharT* __l) {
241 { return append((size_type) __n, (_CharT) __x); }
259 _Self& assign(const _CharT* __s, size_type __n) {
265 _Self& assign(const _CharT* __s) {
271 _Self& assign(size_type __n, _CharT __c) {
280 { return assign((size_type) __n, (_CharT) __x); }
311 _Self& assign(const _CharT* __f, const _CharT* __l) {
329 _Self& insert(size_type __pos, const _CharT* __s, size_type __n) {
335 _Self& insert(size_type __pos, const _CharT* __s) {
341 _Self& insert(size_type __pos, size_type __n, _CharT __c) {
346 iterator insert(iterator __p, _CharT __c)
349 void insert(iterator __p, size_t __n, _CharT __c)
362 void insert(iterator __p, const _CharT* __f, const _CharT* __l) {
369 void _M_insert(iterator __p, const _CharT* __f, const _CharT* __l, bool __self_ref) {
429 { insert(__p, (size_type) __n, (_CharT) __x); }
448 void _M_copyT(const _CharT* __f, const _CharT* __l, _CharT* __res) {
484 const _CharT* __s, size_type __n2) {
490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) {
497 size_type __n2, _CharT __c) {
509 const _CharT* __s, size_type __n) {
517 const _CharT* __s) {
525 size_type __n, _CharT __c) {
543 const _CharT* __f, const _CharT* __l) {
552 const _CharT* __f, const _CharT* __l, bool __self_ref) {
563 return replace(__first, __last, (size_type) __n, (_CharT) __x);