Searched refs:_String_base (Results 1 - 4 of 4) sorted by relevance

/external/stlport/src/
H A Dstring.cpp38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
/external/stlport/stlport/stl/
H A D_string_base.h26 // 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 { class
42 typedef _String_base<_Tp, _Alloc> _Self;
110 _String_base(const allocator_type& __a) function in class:_String_base
118 _String_base(const allocator_type& __a, size_t __n) function in class:_String_base
144 _String_base(__move_source<_Self> src) function in class:_String_base
156 ~_String_base() { _M_deallocate_block(); }
215 _STLP_EXPORT_TEMPLATE_CLASS _String_base<cha variable
217 _STLP_EXPORT_TEMPLATE_CLASS _String_base<wchar_t, allocator<wchar_t> >; variable
[all...]
H A D_string.h121 class basic_string : _STLP_PRIVATE _STLP_PRIV _String_base<_CharT,_Alloc>
127 typedef _STLP_PRIV _String_base<_CharT,_Alloc> _Base;
161 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), _Base::_DEFAULT_SIZE)
165 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a, _Base::_DEFAULT_SIZE)
173 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), __n + 1)
177 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a, __n + 1)
187 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type()) {
194 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type()) {
204 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a) {
217 : _STLP_PRIV _String_base<_Char
[all...]
H A D_string.c597 // _String_base methods
599 void _String_base<_Tp,_Alloc>::_M_throw_length_error() const
603 void _String_base<_Tp, _Alloc>::_M_throw_out_of_range() const
607 void _String_base<_Tp, _Alloc>::_M_allocate_block(size_t __n) {
632 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type()) {
641 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a) {
648 : _STLP_PRIV _String_base<_CharT,_Alloc>(__s.get_allocator())

Completed in 119 milliseconds