/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), "");
|
/prebuilts/ndk/r11/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), "");
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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), "");
|
/prebuilts/ndk/r11/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/ndk/r13/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
|
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
ostream.pass.cpp | 22 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
ostream_delim.pass.cpp | 23 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
ostream.pass.cpp | 22 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
ostream_delim.pass.cpp | 23 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
/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 | 29 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;
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/ |
stream.pass.cpp | 28 typedef std::basic_ostringstream<CharT> ostringstream;
|
/prebuilts/ndk/r11/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;
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/re.submatch.op/ |
stream.pass.cpp | 29 typedef std::basic_ostringstream<CharT> ostringstream;
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
|
/prebuilts/ndk/r10/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;
|
/prebuilts/ndk/r11/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;
|
/prebuilts/ndk/r13/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;
|
/external/libcxx/test/std/input.output/iostream.forward/ |
iosfwd.pass.cpp | 55 test<std::basic_ostringstream<char>* >(); 56 test<std::basic_ostringstream<wchar_t>* >(); 57 test<std::basic_ostringstream<unsigned short>*>();
|
/prebuilts/ndk/r11/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;
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
|