HomeSort by relevance Sort by last modified time
    Searched refs:basic_ostringstream (Results 1 - 20 of 20) sorted by null

  /external/libcxx/test/std/input.output/string.streams/ostringstream/
types.pass.cpp 13 // class basic_ostringstream
29 static_assert((std::is_base_of<std::basic_ostream<char>, std::basic_ostringstream<char> >::value), "");
30 static_assert((std::is_same<std::basic_ostringstream<char>::char_type, char>::value), "");
31 static_assert((std::is_same<std::basic_ostringstream<char>::traits_type, std::char_traits<char> >::value), "");
32 static_assert((std::is_same<std::basic_ostringstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
33 static_assert((std::is_same<std::basic_ostringstream<char>::pos_type, std::char_traits<char>::pos_type>::value), "");
34 static_assert((std::is_same<std::basic_ostringstream<char>::off_type, std::char_traits<char>::off_type>::value), "");
35 static_assert((std::is_same<std::basic_ostringstream<char>::allocator_type, std::allocator<char> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/
types.pass.cpp 13 // class basic_ostringstream
29 static_assert((std::is_base_of<std::basic_ostream<char>, std::basic_ostringstream<char> >::value), "");
30 static_assert((std::is_same<std::basic_ostringstream<char>::char_type, char>::value), "");
31 static_assert((std::is_same<std::basic_ostringstream<char>::traits_type, std::char_traits<char> >::value), "");
32 static_assert((std::is_same<std::basic_ostringstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
33 static_assert((std::is_same<std::basic_ostringstream<char>::pos_type, std::char_traits<char>::pos_type>::value), "");
34 static_assert((std::is_same<std::basic_ostringstream<char>::off_type, std::char_traits<char>::off_type>::value), "");
35 static_assert((std::is_same<std::basic_ostringstream<char>::allocator_type, std::allocator<char> >::value), "");
  /ndk/sources/cxx-stl/stlport/src/
sstream.cpp 28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_sstream.i 102 // 27.7.3 Template class basic_ostringstream
105 class basic_ostringstream : public basic_ostream<_CharT, _Traits>
121 basic_ostringstream(ios_base::openmode __mode = ios_base::out);
124 basic_ostringstream(const basic_string<_CharT, _Traits, _Alloc>& __str,
127 ~basic_ostringstream();
186 %template(ostringstream) basic_ostringstream<char>;
192 %template(wostringstream) basic_ostringstream<wchar_t>;
  /external/libcxx/test/std/re/re.submatch/re.submatch.op/
stream.pass.cpp 28 typedef std::basic_ostringstream<CharT> ostringstream;
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/
stream_insert.pass.cpp 58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/
stream.pass.cpp 28 typedef std::basic_ostringstream<CharT> ostringstream;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
stream_insert.pass.cpp 58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 21 // basic_ostringstream, and basic_stringstream. These classes
157 // Class basic_ostringstream, an output stream that uses a stringbuf.
160 class basic_ostringstream : public basic_ostream<_CharT, _Traits> { class in inherits:basic_ostream
174 basic_ostringstream(ios_base::openmode __mode = ios_base::out);
175 basic_ostringstream(const _String& __str,
177 ~basic_ostringstream();
192 typedef basic_ostringstream<_CharT, _Traits> _Self;
194 basic_ostringstream(_Self const&);
247 _STLP_EXPORT_TEMPLATE_CLASS basic_ostringstream<char, char_traits<char>, allocator<char> >; variable
251 _STLP_EXPORT_TEMPLATE_CLASS basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > variable
    [all...]
_iosfwd.h 54 class basic_ostringstream;
127 typedef basic_ostringstream<char, char_traits<char>, allocator<char> > ostringstream;
144 typedef basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wostringstream;
_sstream.c 416 basic_ostringstream<_CharT, _Traits, _Alloc>
417 ::basic_ostringstream(ios_base::openmode __mode) function in class:_Alloc
424 basic_ostringstream<_CharT, _Traits, _Alloc>
425 ::basic_ostringstream(const _String& __str, ios_base::openmode __mode) function in class:_Alloc
432 basic_ostringstream<_CharT, _Traits, _Alloc>::~basic_ostringstream()
_complex.c 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 21 // basic_ostringstream, and basic_stringstream. These classes
157 // Class basic_ostringstream, an output stream that uses a stringbuf.
160 class basic_ostringstream : public basic_ostream<_CharT, _Traits> { class in inherits:basic_ostream
174 basic_ostringstream(ios_base::openmode __mode = ios_base::out);
175 basic_ostringstream(const _String& __str,
177 ~basic_ostringstream();
192 typedef basic_ostringstream<_CharT, _Traits> _Self;
194 basic_ostringstream(_Self const&);
247 _STLP_EXPORT_TEMPLATE_CLASS basic_ostringstream<char, char_traits<char>, allocator<char> >; variable
251 _STLP_EXPORT_TEMPLATE_CLASS basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > variable
    [all...]
_iosfwd.h 54 class basic_ostringstream;
127 typedef basic_ostringstream<char, char_traits<char>, allocator<char> > ostringstream;
144 typedef basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wostringstream;
_sstream.c 416 basic_ostringstream<_CharT, _Traits, _Alloc>
417 ::basic_ostringstream(ios_base::openmode __mode) function in class:_Alloc
424 basic_ostringstream<_CharT, _Traits, _Alloc>
425 ::basic_ostringstream(const _String& __str, ios_base::openmode __mode) function in class:_Alloc
432 basic_ostringstream<_CharT, _Traits, _Alloc>::~basic_ostringstream()
_complex.c 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp;
  /external/libcxx/test/std/input.output/iostream.forward/
iosfwd.pass.cpp 58 std::basic_ostringstream<char>* t1 = 0;
59 std::basic_ostringstream<wchar_t>* t2 = 0;
60 std::basic_ostringstream<unsigned short>* t3 = 0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/
iosfwd.pass.cpp 58 std::basic_ostringstream<char>* t1 = 0;
59 std::basic_ostringstream<wchar_t>* t2 = 0;
60 std::basic_ostringstream<unsigned short>* t3 = 0;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
wrap_stringstream.hpp 47 typedef std::basic_ostringstream<CharT> wrapped_stream;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
lexical_cast.hpp     [all...]

Completed in 1635 milliseconds