/external/libcxx/test/std/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/llvm-project/libcxx/test/std/input.output/string.streams/ostringstream/ |
D | types.pass.cpp | 30 …static_assert((std::is_base_of<std::basic_ostream<char>, std::basic_ostringstream<char> >::value),… in main() 31 static_assert((std::is_same<std::basic_ostringstream<char>::char_type, char>::value), ""); in main() 32 …static_assert((std::is_same<std::basic_ostringstream<char>::traits_type, std::char_traits<char> >:… in main() 33 …static_assert((std::is_same<std::basic_ostringstream<char>::int_type, std::char_traits<char>::int_… in main() 34 …static_assert((std::is_same<std::basic_ostringstream<char>::pos_type, std::char_traits<char>::pos_… in main() 35 …static_assert((std::is_same<std::basic_ostringstream<char>::off_type, std::char_traits<char>::off_… in main() 36 …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 | 42 class basic_ostringstream; 64 typedef basic_ostringstream<char> ostringstream; 79 typedef basic_ostringstream<wchar_t> wostringstream; 137 class _LIBCPP_TEMPLATE_VIS basic_ostringstream; 166 typedef basic_ostringstream<char> ostringstream; 181 typedef basic_ostringstream<wchar_t> wostringstream;
|
/external/llvm-project/libcxx/test/std/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/libcxx/test/std/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/llvm-project/libcxx/include/ |
D | sstream | 97 class basic_ostringstream 110 explicit basic_ostringstream(ios_base::openmode which = ios_base::out); 111 explicit basic_ostringstream(const basic_string<char_type, traits_type, allocator_type>& str, 113 basic_ostringstream(basic_ostringstream&& rhs); 116 basic_ostringstream& operator=(basic_ostringstream&& rhs); 117 void swap(basic_ostringstream& rhs); 126 void swap(basic_ostringstream<charT, traits, Allocator>& x, 127 basic_ostringstream<charT, traits, Allocator>& y); 129 typedef basic_ostringstream<char> ostringstream; 130 typedef basic_ostringstream<wchar_t> wostringstream; [all …]
|
D | iosfwd | 41 class basic_ostringstream; 63 typedef basic_ostringstream<char> ostringstream; 78 typedef basic_ostringstream<wchar_t> wostringstream; 136 class _LIBCPP_TEMPLATE_VIS basic_ostringstream; 165 typedef basic_ostringstream<char> ostringstream; 180 typedef basic_ostringstream<wchar_t> wostringstream;
|
D | complex | 242 # include <sstream> // for std::basic_ostringstream 1441 basic_ostringstream<_CharT, _Traits> __s;
|
/external/libcxx/test/std/input.output/iostream.forward/ |
D | iosfwd.pass.cpp | 55 test<std::basic_ostringstream<char>* >(); in main() 56 test<std::basic_ostringstream<wchar_t>* >(); in main() 57 test<std::basic_ostringstream<unsigned short>*>(); in main()
|
/external/llvm-project/libcxx/test/std/input.output/iostream.forward/ |
D | iosfwd.pass.cpp | 56 test<std::basic_ostringstream<char>* >(); in main() 57 test<std::basic_ostringstream<wchar_t>* >(); in main() 58 test<std::basic_ostringstream<unsigned short>*>(); in main()
|
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
D | ostream.pass.cpp | 22 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
D | ostream_delim.pass.cpp | 23 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
/external/llvm-project/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
D | ostream.pass.cpp | 23 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
D | ostream_delim.pass.cpp | 24 typedef std::basic_ostringstream<char, MyTraits> StringStream;
|
/external/llvm-project/libcxx/src/ |
D | ios.instantiations.cpp | 35 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostringstream<char>; variable
|
/external/libcxx/test/std/re/re.submatch/re.submatch.op/ |
D | stream.pass.cpp | 29 typedef std::basic_ostringstream<CharT> ostringstream; in test()
|
/external/llvm-project/libcxx/test/std/re/re.submatch/re.submatch.op/ |
D | stream.pass.cpp | 28 typedef std::basic_ostringstream<CharT> ostringstream; in test()
|
/external/llvm-project/clang-tools-extra/clangd/test/ |
D | initialize-sequence.test | 2 {"jsonrpc":"2.0","id":0,"method":"workspace/symbol","params":{"query":"std::basic_ostringstream"}}
|
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/ |
D | logging.h | 52 class LogMessage : public std::basic_ostringstream<char> {
|
/external/swiftshader/src/OpenGL/compiler/ |
D | Common.h | 50 typedef std::basic_ostringstream<char, std::char_traits<char>, TStringAllocator> TStringStream;
|
/external/jsoncpp/include/json/ |
D | config.h | 137 std::basic_ostringstream<String::value_type, String::traits_type,
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | logging.h | 47 class LogMessage : public std::basic_ostringstream<char> { 96 class LogMessageNull : public std::basic_ostringstream<char> {
|
/external/angle/src/compiler/translator/ |
D | Common.h | 54 typedef std::basic_ostringstream<char, std::char_traits<char>, TStringAllocator> TStringStream;
|
/external/fmtlib/include/fmt/ |
D | chrono.h | 891 std::basic_ostringstream<char_type> os;
|