/external/libcxx/test/input.output/string.streams/ostringstream/ |
D | types.pass.cpp | 29 …static_assert((std::is_base_of<std::basic_ostream<char>, std::basic_ostringstream<char> >::value),… in main() 30 static_assert((std::is_same<std::basic_ostringstream<char>::char_type, char>::value), ""); in main() 31 …static_assert((std::is_same<std::basic_ostringstream<char>::traits_type, std::char_traits<char> >:… in main() 32 …static_assert((std::is_same<std::basic_ostringstream<char>::int_type, std::char_traits<char>::int_… in main() 33 …static_assert((std::is_same<std::basic_ostringstream<char>::pos_type, std::char_traits<char>::pos_… in main() 34 …static_assert((std::is_same<std::basic_ostringstream<char>::off_type, std::char_traits<char>::off_… in main() 35 …static_assert((std::is_same<std::basic_ostringstream<char>::allocator_type, std::allocator<char> >… in main()
|
/external/libcxx/include/ |
D | sstream | 98 class basic_ostringstream 111 explicit basic_ostringstream(ios_base::openmode which = ios_base::out); 112 explicit basic_ostringstream(const basic_string<char_type, traits_type, allocator_type>& str, 114 basic_ostringstream(basic_ostringstream&& rhs); 117 basic_ostringstream& operator=(basic_ostringstream&& rhs); 118 void swap(basic_ostringstream& rhs); 127 void swap(basic_ostringstream<charT, traits, Allocator>& x, 128 basic_ostringstream<charT, traits, Allocator>& y); 130 typedef basic_ostringstream<char> ostringstream; 131 typedef basic_ostringstream<wchar_t> wostringstream; [all …]
|
D | iosfwd | 36 class basic_ostringstream; 58 typedef basic_ostringstream<char> ostringstream; 73 typedef basic_ostringstream<wchar_t> wostringstream; 123 class _LIBCPP_TYPE_VIS_ONLY basic_ostringstream; 152 typedef basic_ostringstream<char> ostringstream; 167 typedef basic_ostringstream<wchar_t> wostringstream;
|
D | complex | 1516 basic_ostringstream<_CharT, _Traits> __s;
|
/external/stlport/stlport/stl/ |
D | _sstream.h | 160 class basic_ostringstream : public basic_ostream<_CharT, _Traits> { 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
|
D | _iosfwd.h | 54 class basic_ostringstream; variable 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;
|
D | _sstream.c | 416 basic_ostringstream<_CharT, _Traits, _Alloc> 417 ::basic_ostringstream(ios_base::openmode __mode) in basic_ostringstream() function 424 basic_ostringstream<_CharT, _Traits, _Alloc> 425 ::basic_ostringstream(const _String& __str, ios_base::openmode __mode) in basic_ostringstream() function 432 basic_ostringstream<_CharT, _Traits, _Alloc>::~basic_ostringstream() in ~basic_ostringstream()
|
D | _complex.c | 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp;
|
/external/libcxx/test/strings/basic.string/string.nonmembers/string.io/ |
D | stream_insert.pass.cpp | 58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; in main() 66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; in main() 75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; in main() 83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; in main()
|
/external/stlport/src/ |
D | sstream.cpp | 28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >; variable 34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wc… variable
|
/external/libcxx/test/input.output/iostream.forward/ |
D | iosfwd.pass.cpp | 58 std::basic_ostringstream<char>* t1 = 0; in main() 59 std::basic_ostringstream<wchar_t>* t2 = 0; in main() 60 std::basic_ostringstream<unsigned short>* t3 = 0; in main()
|
/external/stlport/stlport/using/ |
D | sstream | 5 using _STLP_NEW_IO_NAMESPACE::basic_ostringstream;
|
D | iosfwd | 10 using _STLP_NEW_IO_NAMESPACE::basic_ostringstream;
|
/external/libcxx/test/re/re.submatch/re.submatch.op/ |
D | stream.pass.cpp | 28 typedef std::basic_ostringstream<CharT> ostringstream; in test()
|
/external/stlport/stlport/ |
D | sstream | 19 // basic_ostringstream, and basic_stringstream. These classes
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
D | Common.h | 46 typedef std::basic_ostringstream<char, std::char_traits<char>, TStringAllocator> TStringStream;
|
/external/oprofile/libregex/tests/ |
D | mangled-name.in | 297 std::basic_ostringstream<long, std::char_traits<long>, std::allocator<long> > 298 basic_ostringstream<long> 361 std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> > 363 std::basic_ostringstream<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >
|