OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_String_base
(Results
1 - 4
of
4
) sorted by null
/external/stlport/stlport/stl/
_string_base.h
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> >
[
all
...]
_string.h
78
#include <stl/
_string_base
.h>
121
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)
[
all
...]
_string.c
597
//
_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())
/external/stlport/src/
string.cpp
38
template class _STLP_CLASS_DECLSPEC
_String_base
<char, allocator<char> >;
67
template class _STLP_CLASS_DECLSPEC
_String_base
<wchar_t, allocator<wchar_t> >;
Completed in 22 milliseconds