Home | History | Annotate | Download | only in stl

Lines Matching defs:_String_base

26 // Class _String_base.
28 // _String_base is a helper class that makes it it easier to write an
33 // points to a block of memory that was allocated using _String_base's
41 class _String_base {
42 typedef _String_base<_Tp, _Alloc> _Self;
110 _String_base(const allocator_type& __a)
118 _String_base(const allocator_type& __a, size_t __n)
144 _String_base(__move_source<_Self> src)
156 ~_String_base() { _M_deallocate_block(); }
215 _STLP_EXPORT_TEMPLATE_CLASS _String_base<char, allocator<char> >;
217 _STLP_EXPORT_TEMPLATE_CLASS _String_base<wchar_t, allocator<wchar_t> >;