Public Types |
| typedef _CharT | value_type |
| typedef _Traits | traits_type |
| typedef value_type * | pointer |
| typedef const value_type * | const_pointer |
| typedef value_type & | reference |
| typedef const value_type & | const_reference |
| typedef _Base::size_type | size_type |
| typedef ptrdiff_t | difference_type |
| typedef random_access_iterator_tag | _Iterator_category |
| typedef const value_type * | const_iterator |
| typedef value_type * | iterator |
typedef _STLP_PRIV
_String_reserve_t | _Reserve_t |
| typedef _Base::allocator_type | allocator_type |
| typedef _Base::_Iterator_category | _Iterator_category |
| typedef _Base::traits_type | traits_type |
| typedef _Base::_Reserve_t | _Reserve_t |
| typedef _Base::traits_type | traits_type |
typedef _STLP_PRIV _DBG_iter
< _Base, _STLP_PRIV _DbgTraits
< _Nonconst_traits< value_type > > > | iterator |
typedef _STLP_PRIV _DBG_iter
< _Base, _STLP_PRIV _DbgTraits
< _Const_traits< value_type > > > | const_iterator |
| typedef _Base::_Reserve_t | _Reserve_t |
Public Member Functions |
| allocator_type | get_allocator () const |
| | basic_string (const allocator_type &__a=allocator_type()) |
| | basic_string (_Reserve_t, size_t __n, const allocator_type &__a=allocator_type()) |
| | basic_string (const _Self &) |
| | basic_string (const _Self &__s, size_type __pos, size_type __n=npos, const allocator_type &__a=allocator_type()) |
| | basic_string (const _CharT *__s, size_type __n, const allocator_type &__a=allocator_type()) |
| | basic_string (const _CharT *__s, const allocator_type &__a=allocator_type()) |
| | basic_string (size_type __n, _CharT __c, const allocator_type &__a=allocator_type()) |
| | basic_string (__move_source< _Self > src) |
| | basic_string (const _CharT *__f, const _CharT *__l, const allocator_type &__a _STLP_ALLOCATOR_TYPE_DFL) |
| | if (__n > max_size()-__size) this->_M_throw_length_error() |
| | if (__len > max_size()||__len< __size) __len |
| template<class _InputIter > |
| void | _M_range_initialize (_InputIter __f, _InputIter __l, const input_iterator_tag &__tag) |
| template<class _ForwardIter > |
| void | _M_range_initialize (_ForwardIter __f, _ForwardIter __l, const forward_iterator_tag &) |
| template<class _InputIter > |
| void | _M_range_initializeT (_InputIter __f, _InputIter __l) |
| template<class _Integer > |
| void | _M_initialize_dispatch (_Integer __n, _Integer __x, const __true_type &) |
| template<class _InputIter > |
| void | _M_initialize_dispatch (_InputIter __f, _InputIter __l, const __false_type &) |
| _Self & | operator= (const _Self &__s) |
| _Self & | operator= (const _CharT *__s) |
| _Self & | operator= (_CharT __c) |
| iterator | begin () |
| iterator | end () |
| const_iterator | begin () const |
| const_iterator | end () const |
| reverse_iterator | rbegin () |
| reverse_iterator | rend () |
| const_reverse_iterator | rbegin () const |
| const_reverse_iterator | rend () const |
| size_type | size () const |
| size_type | length () const |
| size_type | max_size () const |
| void | resize (size_type __n, _CharT __c) |
| void | resize (size_type __n) |
| void | reserve (size_type=0) |
| size_type | capacity () const |
| void | clear () |
| bool | empty () const |
| const_reference | operator[] (size_type __n) const |
| reference | operator[] (size_type __n) |
| const_reference | at (size_type __n) const |
| reference | at (size_type __n) |
| _Self & | operator+= (const _Self &__s) |
| _Self & | operator+= (const _CharT *__s) |
| _Self & | operator+= (_CharT __c) |
| _Self & | append (const _CharT *__first, const _CharT *__last) |
| _Self & | append (const _Self &__s) |
| _Self & | append (const _Self &__s, size_type __pos, size_type __n) |
| _Self & | append (const _CharT *__s, size_type __n) |
| _Self & | append (const _CharT *__s) |
| _Self & | append (size_type __n, _CharT __c) |
| void | push_back (_CharT __c) |
| void | pop_back () |
| _Self & | assign (const _Self &__s) |
| _Self & | assign (const _Self &__s, size_type __pos, size_type __n) |
| _Self & | assign (const _CharT *__s, size_type __n) |
| _Self & | assign (const _CharT *__s) |
| _Self & | assign (size_type __n, _CharT __c) |
| _Self & | assign (const _CharT *__f, const _CharT *__l) |
| _Self & | insert (size_type __pos, const _Self &__s) |
| _Self & | insert (size_type __pos, const _Self &__s, size_type __beg, size_type __n) |
| _Self & | insert (size_type __pos, const _CharT *__s, size_type __n) |
| _Self & | insert (size_type __pos, const _CharT *__s) |
| _Self & | insert (size_type __pos, size_type __n, _CharT __c) |
| iterator | insert (iterator __p, _CharT __c) |
| void | insert (iterator __p, size_t __n, _CharT __c) |
| pointer | _M_insert_aux (pointer, _CharT) |
| void | _M_copy (const _CharT *__f, const _CharT *__l, _CharT *__res) |
| void | _M_move (const _CharT *__f, const _CharT *__l, _CharT *__res) |
| void | insert (iterator __p, const _CharT *__f, const _CharT *__l) |
| _Self & | erase (size_type __pos=0, size_type __n=npos) |
| iterator | erase (iterator __pos) |
| iterator | erase (iterator __first, iterator __last) |
| _Self & | replace (size_type __pos, size_type __n, const _Self &__s) |
| _Self & | replace (size_type __pos1, size_type __n1, const _Self &__s, size_type __pos2, size_type __n2) |
| _Self & | replace (size_type __pos, size_type __n1, const _CharT *__s, size_type __n2) |
| _Self & | replace (size_type __pos, size_type __n1, const _CharT *__s) |
| _Self & | replace (size_type __pos, size_type __n1, size_type __n2, _CharT __c) |
| _Self & | replace (iterator __first, iterator __last, const _Self &__s) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__s, size_type __n) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__s) |
| _Self & | replace (iterator __first, iterator __last, size_type __n, _CharT __c) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__f, const _CharT *__l) |
| size_type | copy (_CharT *__s, size_type __n, size_type __pos=0) const |
| void | swap (_Self &__s) |
| const _CharT * | c_str () const |
| const _CharT * | data () const |
| size_type | find (const _Self &__s, size_type __pos=0) const |
| size_type | find (const _CharT *__s, size_type __pos=0) const |
| size_type | find (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find (_CharT __c) const |
| size_type | find (_CharT __c, size_type __pos) const |
| size_type | rfind (const _Self &__s, size_type __pos=npos) const |
| size_type | rfind (const _CharT *__s, size_type __pos=npos) const |
| size_type | rfind (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | rfind (_CharT __c, size_type __pos=npos) const |
| size_type | find_first_of (const _Self &__s, size_type __pos=0) const |
| size_type | find_first_of (const _CharT *__s, size_type __pos=0) const |
| size_type | find_first_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_first_of (_CharT __c, size_type __pos=0) const |
| size_type | find_last_of (const _Self &__s, size_type __pos=npos) const |
| size_type | find_last_of (const _CharT *__s, size_type __pos=npos) const |
| size_type | find_last_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_last_of (_CharT __c, size_type __pos=npos) const |
| size_type | find_first_not_of (const _Self &__s, size_type __pos=0) const |
| size_type | find_first_not_of (const _CharT *__s, size_type __pos=0) const |
| size_type | find_first_not_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_first_not_of (_CharT __c, size_type __pos=0) const |
| size_type | find_last_not_of (const _Self &__s, size_type __pos=npos) const |
| size_type | find_last_not_of (const _CharT *__s, size_type __pos=npos) const |
| size_type | find_last_not_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_last_not_of (_CharT __c, size_type __pos=npos) const |
| _Self | substr (size_type __pos=0, size_type __n=npos) const |
| int | compare (const _Self &__s) const |
| int | compare (size_type __pos1, size_type __n1, const _Self &__s) const |
| int | compare (size_type __pos1, size_type __n1, const _Self &__s, size_type __pos2, size_type __n2) const |
| int | compare (const _CharT *__s) const |
| int | compare (size_type __pos1, size_type __n1, const _CharT *__s) const |
| int | compare (size_type __pos1, size_type __n1, const _CharT *__s, size_type __n2) const |
| | basic_string (const allocator_type &__a=allocator_type()) |
| | basic_string (_Reserve_t __r, size_t __n, const allocator_type &__a=allocator_type()) |
| | basic_string (const _Self &__s) |
| | basic_string (const _Self &__s, size_type __pos, size_type __n=npos, const allocator_type &__a=allocator_type()) |
| | basic_string (const _CharT *__s, size_type __n, const allocator_type &__a=allocator_type()) |
| | basic_string (const _CharT *__s, const allocator_type &__a=allocator_type()) |
| | basic_string (size_type __n, _CharT __c, const allocator_type &__a=allocator_type()) |
| | basic_string (__move_source< _Self > src) |
| template<class _InputIterator > |
| | basic_string (_InputIterator __f, _InputIterator __l, const allocator_type &__a _STLP_ALLOCATOR_TYPE_DFL) |
| _Self & | operator= (const _Self &__s) |
| _Self & | operator= (const _CharT *__s) |
| _Self & | operator= (_CharT __c) |
| _Self & | operator+= (const _Self &__s) |
| _Self & | operator+= (const _CharT *__s) |
| _Self & | operator+= (_CharT __c) |
| _Self & | append (const _Self &__s) |
| _Self & | append (const _Self &__s, size_type __pos, size_type __n) |
| _Self & | append (const _CharT *__s, size_type __n) |
| _Self & | append (const _CharT *__s) |
| _Self & | append (size_type __n, _CharT __c) |
| template<class _InputIter > |
| _Self & | append (_InputIter __first, _InputIter __last) |
| _Self & | append (const _CharT *__f, const _CharT *__l) |
| _Self & | assign (const _Self &__s) |
| _Self & | assign (const _Self &__s, size_type __pos, size_type __n) |
| _Self & | assign (const _CharT *__s, size_type __n) |
| _Self & | assign (const _CharT *__s) |
| _Self & | assign (size_type __n, _CharT __c) |
| template<class _InputIter > |
| _Self & | assign (_InputIter __first, _InputIter __last) |
| _Self & | assign (const _CharT *__f, const _CharT *__l) |
| _Self & | insert (size_type __pos, const _Self &__s) |
| _Self & | insert (size_type __pos, const _Self &__s, size_type __beg, size_type __n) |
| _Self & | insert (size_type __pos, const _CharT *__s, size_type __n) |
| _Self & | insert (size_type __pos, const _CharT *__s) |
| _Self & | insert (size_type __pos, size_type __n, _CharT __c) |
| iterator | insert (iterator __p, _CharT __c) |
| void | insert (iterator __p, size_t __n, _CharT __c) |
| template<class _InputIter > |
| void | insert (iterator __p, _InputIter __first, _InputIter __last) |
| void | insert (iterator __p, const _CharT *__f, const _CharT *__l) |
| _Self & | erase (size_type __pos=0, size_type __n=npos) |
| iterator | erase (iterator __pos) |
| iterator | erase (iterator __first, iterator __last) |
| _Self & | replace (size_type __pos, size_type __n, const _Self &__s) |
| _Self & | replace (size_type __pos1, size_type __n1, const _Self &__s, size_type __pos2, size_type __n2) |
| _Self & | replace (size_type __pos, size_type __n1, const _CharT *__s, size_type __n2) |
| _Self & | replace (size_type __pos, size_type __n1, const _CharT *__s) |
| _Self & | replace (size_type __pos, size_type __n1, size_type __n2, _CharT __c) |
| _Self & | replace (iterator __first, iterator __last, const _Self &__s) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__s, size_type __n) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__s) |
| _Self & | replace (iterator __first, iterator __last, size_type __n, _CharT __c) |
| template<class _InputIter > |
| _Self & | replace (iterator __first, iterator __last, _InputIter __f, _InputIter __l) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__f, const _CharT *__l) |
| void | swap (_Self &__s) |
| _Self | substr (size_type __pos=0, size_type __n=npos) const |
| allocator_type | get_allocator () const |
| | basic_string (const allocator_type &__a=allocator_type()) |
| | basic_string (_Reserve_t __r, size_t __n, const allocator_type &__a=allocator_type()) |
| | basic_string (const _Self &__s) |
| | basic_string (const _Self &__s, size_type __pos, size_type __n=npos, const allocator_type &__a=allocator_type()) |
| | basic_string (const _CharT *__s, size_type __n, const allocator_type &__a=allocator_type()) |
| | basic_string (const _CharT *__s, const allocator_type &__a=allocator_type()) |
| | basic_string (size_type __n, _CharT __c, const allocator_type &__a=allocator_type()) |
| | basic_string (__move_source< _Self > src) |
| | basic_string (const _CharT *__f, const _CharT *__l, const allocator_type &__a=allocator_type()) |
| | basic_string (const_iterator __f, const_iterator __l, const allocator_type &__a=allocator_type()) |
| _Self & | operator= (const _Self &__s) |
| _Self & | operator= (const _CharT *__s) |
| _Self & | operator= (_CharT __c) |
| iterator | begin () |
| const_iterator | begin () const |
| iterator | end () |
| const_iterator | end () const |
| reverse_iterator | rbegin () |
| const_reverse_iterator | rbegin () const |
| reverse_iterator | rend () |
| const_reverse_iterator | rend () const |
| size_type | size () const |
| size_type | length () const |
| size_t | max_size () const |
| void | resize (size_type __n, _CharT __c) |
| void | resize (size_type __n) |
| size_type | capacity () const |
| void | reserve (size_type __s=0) |
| void | clear () |
| bool | empty () const |
| const_reference | operator[] (size_type __n) const |
| reference | operator[] (size_type __n) |
| const_reference | at (size_type __n) const |
| reference | at (size_type __n) |
| _Self & | operator+= (const _Self &__s) |
| _Self & | operator+= (const _CharT *__s) |
| _Self & | operator+= (_CharT __c) |
| _Self & | append (const _CharT *__f, const _CharT *__l) |
| _Self & | append (const_iterator __f, const_iterator __l) |
| _Self & | append (const _Self &__s) |
| _Self & | append (const _Self &__s, size_type __pos, size_type __n) |
| _Self & | append (const _CharT *__s, size_type __n) |
| _Self & | append (const _CharT *__s) |
| _Self & | append (size_type __n, _CharT __c) |
| void | push_back (_CharT __c) |
| void | pop_back () |
| _Self & | assign (const _Self &__s) |
| _Self & | assign (const _Self &__s, size_type __pos, size_type __n) |
| _Self & | assign (const _CharT *__s, size_type __n) |
| _Self & | assign (const _CharT *__s) |
| _Self & | assign (size_type __n, _CharT __c) |
| _Self & | assign (const _CharT *__f, const _CharT *__l) |
| _Self & | assign (const_iterator __f, const_iterator __l) |
| _Self & | insert (size_type __pos, const _Self &__s) |
| _Self & | insert (size_type __pos, const _Self &__s, size_type __beg, size_type __n) |
| _Self & | insert (size_type __pos, const _CharT *__s, size_type __n) |
| _Self & | insert (size_type __pos, const _CharT *__s) |
| _Self & | insert (size_type __pos, size_type __n, _CharT __c) |
| iterator | insert (iterator __p, _CharT __c) |
| void | insert (iterator __p, size_t __n, _CharT __c) |
| void | insert (iterator __p, const _CharT *__f, const _CharT *__l) |
| void | insert (iterator __p, const_iterator __f, const_iterator __l) |
| void | insert (iterator __p, iterator __f, iterator __l) |
| _Self & | erase (size_type __pos=0, size_type __n=npos) |
| iterator | erase (iterator __pos) |
| iterator | erase (iterator __f, iterator __l) |
| _Self | substr (size_type __pos=0, size_type __n=npos) const |
| _Self & | replace (size_type __pos, size_type __n, const _Self &__s) |
| _Self & | replace (size_type __pos1, size_type __n1, const _Self &__s, size_type __pos2, size_type __n2) |
| _Self & | replace (size_type __pos, size_type __n1, const _CharT *__s, size_type __n2) |
| _Self & | replace (size_type __pos, size_type __n1, const _CharT *__s) |
| _Self & | replace (size_type __pos, size_type __n1, size_type __n2, _CharT __c) |
| _Self & | replace (iterator __f, iterator __l, const _Self &__s) |
| _Self & | replace (iterator __f, iterator __l, const _CharT *__s, size_type __n) |
| _Self & | replace (iterator __f, iterator __l, const _CharT *__s) |
| _Self & | replace (iterator __f, iterator __l, size_type __n, _CharT __c) |
| _Self & | replace (iterator __first, iterator __last, const _CharT *__f, const _CharT *__l) |
| _Self & | replace (iterator __first, iterator __last, const_iterator __f, const_iterator __l) |
| _Self & | replace (iterator __first, iterator __last, iterator __f, iterator __l) |
| void | swap (_Self &__s) |
| int | compare (const _Self &__s) const |
| int | compare (size_type __pos, size_type __n, const _Self &__s) const |
| int | compare (size_type __pos1, size_type __n1, const _Self &__s, size_type __pos2, size_type __n2) const |
| int | compare (const _CharT *__s) const |
| int | compare (size_type __pos, size_type __n, const _CharT *__s) const |
| int | compare (size_type __pos1, size_type __n1, const _CharT *__s, size_type __n2) const |
| const _CharT * | c_str () const |
| const _CharT * | data () const |
| size_type | copy (_CharT *__s, size_type __n, size_type __pos=0) const |
| size_type | find (const _Self &__s, size_type __pos=0) const |
| size_type | find (const _CharT *__s, size_type __pos=0) const |
| size_type | find (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find (_CharT __c) const |
| size_type | find (_CharT __c, size_type __pos) const |
| size_type | rfind (const _Self &__s, size_type __pos=npos) const |
| size_type | rfind (const _CharT *__s, size_type __pos=npos) const |
| size_type | rfind (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | rfind (_CharT __c, size_type __pos=npos) const |
| size_type | find_first_of (const _Self &__s, size_type __pos=0) const |
| size_type | find_first_of (const _CharT *__s, size_type __pos=0) const |
| size_type | find_first_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_first_of (_CharT __c, size_type __pos=0) const |
| size_type | find_last_of (const _Self &__s, size_type __pos=npos) const |
| size_type | find_last_of (const _CharT *__s, size_type __pos=npos) const |
| size_type | find_last_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_last_of (_CharT __c, size_type __pos=npos) const |
| size_type | find_first_not_of (const _Self &__s, size_type __pos=0) const |
| size_type | find_first_not_of (const _CharT *__s, size_type __pos=0) const |
| size_type | find_first_not_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_first_not_of (_CharT __c, size_type __pos=0) const |
| size_type | find_last_not_of (const _Self &__s, size_type __pos=npos) const |
| size_type | find_last_not_of (const _CharT *__s, size_type __pos=npos) const |
| size_type | find_last_not_of (const _CharT *__s, size_type __pos, size_type __n) const |
| size_type | find_last_not_of (_CharT __c, size_type __pos=npos) const |
Static Public Member Functions |
| static int _STLP_CALL | _M_compare (const _CharT *__f1, const _CharT *__l1, const _CharT *__f2, const _CharT *__l2) |
| static int _STLP_CALL | _M_compare (const _CharT *__f1, const _CharT *__l1, const _CharT *__f2, const _CharT *__l2) |
| static int _STLP_CALL | _M_compare (const_iterator __f1, const_iterator __l1, const _CharT *__f2, const _CharT *__l2) |
| static int _STLP_CALL | _M_compare (const _CharT *__f1, const _CharT *__l1, const_iterator __f2, const_iterator __l2) |
| static int _STLP_CALL | _M_compare (const_iterator __f1, const_iterator __l1, const_iterator __f2, const_iterator __l2) |
Data Fields |
| | _STLP_DECLARE_RANDOM_ACCESS_REVERSE_ITERATORS |
| _STLP_PRIVATE | __pad1__: size_type _M_compute_next_size(size_type __n) { const size_type __size = size() |
| size_type | __len = __size + (max)(__n, __size) + 1 |
| return | __len |
| _STLP_PRIVATE | __pad3__: void _M_insert(iterator __p |
| _STLP_PRIVATE const _CharT * | __first |
_STLP_PRIVATE const _CharT
const _CharT * | __last |
_STLP_PRIVATE const _CharT
const _CharT bool | __self_ref |
| _STLP_PRIVATE | __pad4__: _Self& _M_replace(iterator __first |
| _STLP_PRIVATE iterator | __last |
_STLP_PRIVATE iterator const
_CharT * | __f |
_STLP_PRIVATE iterator const
_CharT const _CharT * | __l |
_STLP_PRIVATE iterator const
_CharT const _CharT bool | __self_ref |
Protected Types |
| typedef _STLP_NON_DBG_STRING | _Base |
typedef basic_string< _CharT,
_Traits, _Alloc > | _Self |
typedef _STLP_PRIV
__construct_checker
< _STLP_NON_DBG_STRING > | _ConstructCheck |
| typedef _IsPOD< _CharT >::_Type | _Char_Is_POD |
Private Types |
typedef basic_string< _CharT,
_Traits, _Alloc > | _Self |
typedef basic_string< _CharT,
_Traits, _Alloc > | _Self |
| typedef _STLP_NO_MEM_T_STRING_BASE | _Base |
typedef
_Base::_CalledFromWorkaround_t | _CalledFromWorkaround_t |
Private Member Functions |
| void | _M_terminate_string () |
| bool | _M_inside (const _CharT *__s) const |
| void | _M_range_initialize (const _CharT *__f, const _CharT *__l) |
| void | _M_reserve (size_type) |
| _Self & | _M_append (const _CharT *__first, const _CharT *__last) |
| _Self & | _M_assign (const _CharT *__f, const _CharT *__l) |
| template<class _InputIter > |
| void | _M_range_initialize (_InputIter __f, _InputIter __l, const input_iterator_tag &__tag) |
| template<class _ForwardIter > |
| void | _M_range_initialize (_ForwardIter __f, _ForwardIter __l, const forward_iterator_tag &) |
| template<class _InputIter > |
| void | _M_range_initializeT (_InputIter __f, _InputIter __l) |
| template<class _Integer > |
| void | _M_initialize_dispatch (_Integer __n, _Integer __x, const __true_type &) |
| template<class _InputIter > |
| void | _M_initialize_dispatch (_InputIter __f, _InputIter __l, const __false_type &) |
| template<class _InputIter > |
| _Self & | _M_appendT (_InputIter __first, _InputIter __last, const input_iterator_tag &) |
| template<class _ForwardIter > |
| _Self & | _M_appendT (_ForwardIter __first, _ForwardIter __last, const forward_iterator_tag &) |
| template<class _Integer > |
| _Self & | _M_append_dispatch (_Integer __n, _Integer __x, const __true_type &) |
| template<class _InputIter > |
| _Self & | _M_append_dispatch (_InputIter __f, _InputIter __l, const __false_type &) |
| template<class _Integer > |
| _Self & | _M_assign_dispatch (_Integer __n, _Integer __x, const __true_type &) |
| template<class _InputIter > |
| _Self & | _M_assign_dispatch (_InputIter __f, _InputIter __l, const __false_type &) |
| void | _M_insert (iterator __p, const _CharT *__f, const _CharT *__l, bool __self_ref) |
| template<class _ForwardIter > |
| void | _M_insert_overflow (iterator __pos, _ForwardIter __first, _ForwardIter __last, size_type __n) |
| template<class _InputIter > |
| void | _M_insertT (iterator __p, _InputIter __first, _InputIter __last, const input_iterator_tag &) |
| template<class _ForwardIter > |
| void | _M_insertT (iterator __pos, _ForwardIter __first, _ForwardIter __last, const forward_iterator_tag &) |
| template<class _Integer > |
| void | _M_insert_dispatch (iterator __p, _Integer __n, _Integer __x, const __true_type &) |
| template<class _InputIter > |
| void | _M_insert_dispatch (iterator __p, _InputIter __first, _InputIter __last, const __false_type &) |
| template<class _InputIterator > |
| void | _M_copyT (_InputIterator __first, _InputIterator __last, pointer __result) |
| void | _M_copyT (const _CharT *__f, const _CharT *__l, _CharT *__res) |
| _Self & | _M_replace (iterator __first, iterator __last, const _CharT *__f, const _CharT *__l, bool __self_ref) |
| template<class _Integer > |
| _Self & | _M_replace_dispatch (iterator __first, iterator __last, _Integer __n, _Integer __x, const __true_type &) |
| template<class _InputIter > |
| _Self & | _M_replace_dispatch (iterator __first, iterator __last, _InputIter __f, _InputIter __l, const __false_type &) |
| void | _Invalidate_all () |
| void | _Compare_Capacity (size_type __old_capacity) |
| void | _Invalidate_iterator (const iterator &__it) |
| void | _Invalidate_iterators (const iterator &__f, const iterator &__l) |
| | basic_string (const _Base &__x) |
Static Private Member Functions |
| static _CharT _STLP_CALL | _M_null () |
Private Attributes |
| _STLP_PRIVATE | __pad0__: typedef _STLP_PRIV _String_base<_CharT |
| _STLP_PRIVATE _Alloc | _Base |
| _STLP_PRIVATE | __pad2__: void _M_construct_null(_CharT* __p) const { _STLP_STD::_Construct(__p) |
| _Base | _M_non_dbg_impl |
| _STLP_PRIV __owned_list | _M_iter_list |