HomeSort by relevance Sort by last modified time
    Searched full:basic_stringbuf (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/astl/src/
sstream.cpp 35 // basic_stringbuf
37 basic_stringbuf::basic_stringbuf(ios_base::openmode mode) : function in class:std::basic_stringbuf
40 basic_stringbuf::basic_stringbuf(const string& str, ios_base::openmode mode) : function in class:std::basic_stringbuf
43 basic_stringbuf::~basic_stringbuf() { }
45 const string& basic_stringbuf::str() const {
49 void basic_stringbuf::str(const string& str) {
53 streamsize basic_stringbuf::in_avail()
    [all...]
  /external/stlport/stlport/using/
sstream 1 using _STLP_NEW_IO_NAMESPACE::basic_stringbuf;
  /ndk/sources/cxx-stl/stlport/stlport/using/
sstream 1 using _STLP_NEW_IO_NAMESPACE::basic_stringbuf;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/using/
sstream 1 using _STLP_NEW_IO_NAMESPACE::basic_stringbuf;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/using/
sstream 1 using _STLP_NEW_IO_NAMESPACE::basic_stringbuf;
  /external/astl/include/
sstream 41 // Declare basic_stringbuf which is a buffer implemented using a std::string.
42 // Then declare stringstream which implement a stream using basic_stringbuf.
44 struct basic_stringbuf : public streambuf {
53 explicit basic_stringbuf(ios_base::openmode mode =
59 explicit basic_stringbuf(const string& str,
63 virtual ~basic_stringbuf();
91 typedef basic_stringbuf stringbuf;
111 basic_stringbuf mStringBuf;
  /external/stlport/stlport/stl/
_sstream.h 20 // This header defines classes basic_stringbuf, basic_istringstream,
43 // This version of basic_stringbuf relies on the internal details of
55 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> { class in inherits:basic_streambuf
64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self;
68 explicit basic_stringbuf(ios_base::openmode __mode
70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode
72 virtual ~basic_stringbuf();
107 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<char, char_traits<char>, allocator<char> >; variable
109 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable
128 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Buf
    [all...]
_sstream.c 31 # define __BSB_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
32 # define __BSB_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
44 basic_stringbuf<_CharT, _Traits, _Alloc>
45 ::basic_stringbuf(ios_base::openmode __mode) function in class:_Alloc
50 basic_stringbuf<_CharT, _Traits, _Alloc>
51 ::basic_stringbuf(const basic_string<_CharT, _Traits, _Alloc>& __s, ios_base::openmode __mode) function in class:_Alloc
58 basic_stringbuf<_CharT, _Traits, _Alloc>::~basic_stringbuf()
64 basic_stringbuf<_CharT, _Traits, _Alloc>::str(const basic_string<_CharT, _Traits, _Alloc>& __s)
72 basic_stringbuf<_CharT, _Traits, _Alloc>::_M_set_ptrs(
    [all...]
_iosfwd.h 46 class basic_stringbuf;
125 typedef basic_stringbuf<char, char_traits<char>, allocator<char> > stringbuf;
142 typedef basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstringbuf;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 20 // This header defines classes basic_stringbuf, basic_istringstream,
43 // This version of basic_stringbuf relies on the internal details of
55 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> { class in inherits:basic_streambuf
64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self;
68 explicit basic_stringbuf(ios_base::openmode __mode
70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode
72 virtual ~basic_stringbuf();
107 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<char, char_traits<char>, allocator<char> >; variable
109 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable
128 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Buf
    [all...]
_sstream.c 31 # define __BSB_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
32 # define __BSB_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
44 basic_stringbuf<_CharT, _Traits, _Alloc>
45 ::basic_stringbuf(ios_base::openmode __mode) function in class:_Alloc
50 basic_stringbuf<_CharT, _Traits, _Alloc>
51 ::basic_stringbuf(const basic_string<_CharT, _Traits, _Alloc>& __s, ios_base::openmode __mode) function in class:_Alloc
58 basic_stringbuf<_CharT, _Traits, _Alloc>::~basic_stringbuf()
64 basic_stringbuf<_CharT, _Traits, _Alloc>::str(const basic_string<_CharT, _Traits, _Alloc>& __s)
72 basic_stringbuf<_CharT, _Traits, _Alloc>::_M_set_ptrs(
    [all...]
_iosfwd.h 46 class basic_stringbuf;
125 typedef basic_stringbuf<char, char_traits<char>, allocator<char> > stringbuf;
142 typedef basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstringbuf;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 20 // This header defines classes basic_stringbuf, basic_istringstream,
43 // This version of basic_stringbuf relies on the internal details of
55 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> { class in inherits:basic_streambuf
64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self;
68 explicit basic_stringbuf(ios_base::openmode __mode
70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode
72 virtual ~basic_stringbuf();
107 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<char, char_traits<char>, allocator<char> >; variable
109 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable
128 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Buf
    [all...]
_sstream.c 31 # define __BSB_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
32 # define __BSB_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
44 basic_stringbuf<_CharT, _Traits, _Alloc>
45 ::basic_stringbuf(ios_base::openmode __mode) function in class:_Alloc
50 basic_stringbuf<_CharT, _Traits, _Alloc>
51 ::basic_stringbuf(const basic_string<_CharT, _Traits, _Alloc>& __s, ios_base::openmode __mode) function in class:_Alloc
58 basic_stringbuf<_CharT, _Traits, _Alloc>::~basic_stringbuf()
64 basic_stringbuf<_CharT, _Traits, _Alloc>::str(const basic_string<_CharT, _Traits, _Alloc>& __s)
72 basic_stringbuf<_CharT, _Traits, _Alloc>::_M_set_ptrs(
    [all...]
_iosfwd.h 46 class basic_stringbuf;
125 typedef basic_stringbuf<char, char_traits<char>, allocator<char> > stringbuf;
142 typedef basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstringbuf;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 20 // This header defines classes basic_stringbuf, basic_istringstream,
43 // This version of basic_stringbuf relies on the internal details of
55 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> { class in inherits:basic_streambuf
64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self;
68 explicit basic_stringbuf(ios_base::openmode __mode
70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode
72 virtual ~basic_stringbuf();
107 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<char, char_traits<char>, allocator<char> >; variable
109 _STLP_EXPORT_TEMPLATE_CLASS basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable
128 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Buf
    [all...]
_sstream.c 31 # define __BSB_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
32 # define __BSB_pos_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
44 basic_stringbuf<_CharT, _Traits, _Alloc>
45 ::basic_stringbuf(ios_base::openmode __mode) function in class:_Alloc
50 basic_stringbuf<_CharT, _Traits, _Alloc>
51 ::basic_stringbuf(const basic_string<_CharT, _Traits, _Alloc>& __s, ios_base::openmode __mode) function in class:_Alloc
58 basic_stringbuf<_CharT, _Traits, _Alloc>::~basic_stringbuf()
64 basic_stringbuf<_CharT, _Traits, _Alloc>::str(const basic_string<_CharT, _Traits, _Alloc>& __s)
72 basic_stringbuf<_CharT, _Traits, _Alloc>::_M_set_ptrs(
    [all...]
_iosfwd.h 46 class basic_stringbuf;
125 typedef basic_stringbuf<char, char_traits<char>, allocator<char> > stringbuf;
142 typedef basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstringbuf;
  /external/stlport/src/
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
  /ndk/sources/cxx-stl/stlport/src/
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
sstream.tcc 44 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
45 basic_stringbuf<_CharT, _Traits, _Alloc>::
78 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
79 basic_stringbuf<_CharT, _Traits, _Alloc>::
129 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
130 basic_stringbuf<_CharT, _Traits, _Alloc>::
147 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
148 basic_stringbuf<_CharT, _Traits, _Alloc>::
159 // 453. basic_stringbuf::seekoff need not always fail for an empty stream.
194 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_typ
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
sstream.tcc 44 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
45 basic_stringbuf<_CharT, _Traits, _Alloc>::
78 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
79 basic_stringbuf<_CharT, _Traits, _Alloc>::
129 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
130 basic_stringbuf<_CharT, _Traits, _Alloc>::
147 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
148 basic_stringbuf<_CharT, _Traits, _Alloc>::
159 // 453. basic_stringbuf::seekoff need not always fail for an empty stream.
194 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_typ
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
sstream.tcc 44 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
45 basic_stringbuf<_CharT, _Traits, _Alloc>::
78 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
79 basic_stringbuf<_CharT, _Traits, _Alloc>::
129 typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
130 basic_stringbuf<_CharT, _Traits, _Alloc>::
147 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
148 basic_stringbuf<_CharT, _Traits, _Alloc>::
159 // 453. basic_stringbuf::seekoff need not always fail for an empty stream.
194 typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_typ
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
sstream 44 // [27.7.1] template class basic_stringbuf
58 class basic_stringbuf : public basic_streambuf<_CharT, _Traits>
65 // 251. basic_stringbuf missing allocator_type
92 basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out)
105 basic_stringbuf(const __string_type& __str,
252 * the associated sequence, an instance of std::basic_stringbuf is used,
263 // 251. basic_stringbuf missing allocator_type
271 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type;
327 * @return The current basic_stringbuf buffer.
362 * the associated sequence, an instance of std::basic_stringbuf is used
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
sstream 44 // [27.7.1] template class basic_stringbuf
58 class basic_stringbuf : public basic_streambuf<_CharT, _Traits>
65 // 251. basic_stringbuf missing allocator_type
92 basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out)
105 basic_stringbuf(const __string_type& __str,
252 * the associated sequence, an instance of std::basic_stringbuf is used,
263 // 251. basic_stringbuf missing allocator_type
271 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type;
327 * @return The current basic_stringbuf buffer.
362 * the associated sequence, an instance of std::basic_stringbuf is used
    [all...]

Completed in 649 milliseconds

1 2 3