| /src/contrib/llvm-project/libcxx/include/ |
| H A D | ostream | 17 class basic_ostream 29 explicit basic_ostream(basic_streambuf<char_type,traits>* sb); 30 basic_ostream(basic_ostream&& rhs); 31 virtual ~basic_ostream(); 34 basic_ostream& operator=(const basic_ostream& rhs) = delete; // C++14 35 basic_ostream& operator=(basic_ostream&& rhs); 36 void swap(basic_ostream& rhs); 42 basic_ostream& operator<<(basic_ostream& (*pf)(basic_ostream&)); 43 basic_ostream& operator<<(basic_ios<charT, traits>& (*pf)(basic_ios<charT,traits>&)); 44 basic_ostream& operator<<(ios_base& (*pf)(ios_base&)); [all …]
|
| H A D | iomanip | 71 friend _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 72 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t1& __x) { 96 friend _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 97 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t2& __x) { 125 friend _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 126 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t3& __x) { 148 friend _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 149 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t4& __x) { 176 friend _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 177 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t5& __x) { [all …]
|
| H A D | chrono | 218 basic_ostream<charT, traits>& 219 operator<<(basic_ostream<charT, traits>& os, 296 basic_ostream<charT, traits>& 297 operator<<(basic_ostream<charT, traits>& os, const sys_time<Duration>& tp); 300 basic_ostream<charT, traits>& 301 operator<<(basic_ostream<charT, traits>& os, const sys_days& dp); 325 basic_ostream<charT, traits>& 326 operator<<(basic_ostream<charT, traits>& os, const file_time<Duration>& tp); 350 basic_ostream<charT, traits>& 351 operator<<(basic_ostream<charT, traits>& os, const local_time<Duration>& tp); [all …]
|
| H A D | random | 66 basic_ostream<charT, traits>& 67 operator<<(basic_ostream<charT, traits>& os, 136 basic_ostream<charT, traits>& 137 operator<<(basic_ostream<charT, traits>& os, 190 basic_ostream<charT, traits>& 191 operator<<(basic_ostream<charT, traits>& os, 245 basic_ostream<charT, traits>& 246 operator<<(basic_ostream<charT, traits>& os, 297 basic_ostream<charT, traits>& 298 operator<<(basic_ostream<charT, traits>& os, [all …]
|
| H A D | syncstream | 80 class basic_osyncstream : public basic_ostream<charT, traits> { 96 basic_osyncstream(basic_ostream<charT, traits>& os, const Allocator& allocator) 98 explicit basic_osyncstream(basic_ostream<charT, traits>& os) 433 class _LIBCPP_TEMPLATE_VIS basic_osyncstream : public basic_ostream<_CharT, _Traits> { 448 : basic_ostream<_CharT, _Traits>(std::addressof(__sb_)), __sb_(__obuf, __alloc) {} 453 …_LIBCPP_HIDE_FROM_ABI basic_osyncstream(basic_ostream<char_type, traits_type>& __os, allocator_typ… 456 _LIBCPP_HIDE_FROM_ABI explicit basic_osyncstream(basic_ostream<char_type, traits_type>& __os) 460 : basic_ostream<_CharT, _Traits>(std::addressof(__sb_)), __sb_(std::move(__other.__sb_)) { 471 // The basic_ostream::put places the sentry in a try 475 typename basic_ostream<char_type, traits_type>::sentry __s(*this);
|
| /src/contrib/llvm-project/libcxx/include/__ostream/ |
| H A D | basic_ostream.h | 40 class _LIBCPP_TEMPLATE_VIS basic_ostream : virtual public basic_ios<_CharT, _Traits> { 50 …inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 explicit basic_ostream(basic_streambuf<char_type, traits_typ… in basic_ostream() function 53 ~basic_ostream() override; 55 basic_ostream(const basic_ostream& __rhs) = delete; 56 basic_ostream& operator=(const basic_ostream& __rhs) = delete; 59 inline _LIBCPP_HIDE_FROM_ABI basic_ostream(basic_ostream&& __rhs); 62 inline _LIBCPP_HIDE_FROM_ABI basic_ostream& operator=(basic_ostream&& __rhs); 64 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 void swap(basic_ostream& __rhs) { in swap() 73 …inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_ostream& operator<<(basic_ostream& (*__pf)(basic_ostre… 77 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_ostream& [all …]
|
| /src/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | ostream.h | 49 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 50 operator<<(basic_ostream<_CharT, _Traits>& __os, const sys_time<_Duration>& __tp) { 55 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 56 operator<<(basic_ostream<_CharT, _Traits>& __os, const sys_days& __dp) { 61 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 62 operator<<(basic_ostream<_CharT, _Traits>& __os, const file_time<_Duration> __tp) { 67 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 68 operator<<(basic_ostream<_CharT, _Traits>& __os, const local_time<_Duration> __tp) { 127 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 128 operator<<(basic_ostream<_CharT, _Traits>& __os, const duration<_Rep, _Period>& __d) { [all …]
|
| /src/contrib/llvm-project/libcxx/include/__fwd/ |
| H A D | ostream.h | 22 class _LIBCPP_TEMPLATE_VIS basic_ostream; variable 24 using ostream = basic_ostream<char>; 27 using wostream = basic_ostream<wchar_t>; 31 …PREFERRED_NAME(ostream) _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wostream)) basic_ostream;
|
| /src/contrib/llvm-project/libcxx/include/__random/ |
| H A D | discrete_distribution.h | 68 friend basic_ostream<_CharT, _Traits>& 69 operator<<(basic_ostream<_CharT, _Traits>& __os, const discrete_distribution<_IT>& __x); 118 friend basic_ostream<_CharT, _Traits>& 119 operator<<(basic_ostream<_CharT, _Traits>& __os, const discrete_distribution<_IT>& __x); 178 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 179 operator<<(basic_ostream<_CharT, _Traits>& __os, const discrete_distribution<_IT>& __x) { 181 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | lognormal_distribution.h | 102 friend basic_ostream<_CharT, _Traits>& 103 operator<<(basic_ostream<_CharT, _Traits>& __os, const lognormal_distribution<_RT>& __x); 111 inline _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 112 operator<<(basic_ostream<_CharT, _Traits>& __os, const lognormal_distribution<_RT>& __x) {
|
| H A D | discard_block_engine.h | 105 friend basic_ostream<_CharT, _Traits>& 106 operator<<(basic_ostream<_CharT, _Traits>& __os, const discard_block_engine<_Eng, _Pp, _Rp>& __x); 142 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 143 operator<<(basic_ostream<_CharT, _Traits>& __os, const discard_block_engine<_Eng, _Pp, _Rp>& __x) { 145 typedef basic_ostream<_CharT, _Traits> _Ostream;
|
| H A D | normal_distribution.h | 100 friend basic_ostream<_CharT, _Traits>& 101 operator<<(basic_ostream<_CharT, _Traits>& __os, const normal_distribution<_RT>& __x); 135 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 136 operator<<(basic_ostream<_CharT, _Traits>& __os, const normal_distribution<_RT>& __x) { 138 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | piecewise_constant_distribution.h | 72 friend basic_ostream<_CharT, _Traits>& 73 … operator<<(basic_ostream<_CharT, _Traits>& __os, const piecewise_constant_distribution<_RT>& __x); 134 friend basic_ostream<_CharT, _Traits>& 135 operator<<(basic_ostream<_CharT, _Traits>& __os, const piecewise_constant_distribution<_RT>& __x); 247 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 248 operator<<(basic_ostream<_CharT, _Traits>& __os, const piecewise_constant_distribution<_RT>& __x) { 250 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | piecewise_linear_distribution.h | 72 friend basic_ostream<_CharT, _Traits>& 73 operator<<(basic_ostream<_CharT, _Traits>& __os, const piecewise_linear_distribution<_RT>& __x); 134 friend basic_ostream<_CharT, _Traits>& 135 operator<<(basic_ostream<_CharT, _Traits>& __os, const piecewise_linear_distribution<_RT>& __x); 260 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 261 operator<<(basic_ostream<_CharT, _Traits>& __os, const piecewise_linear_distribution<_RT>& __x) { 263 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | geometric_distribution.h | 93 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 94 operator<<(basic_ostream<_CharT, _Traits>& __os, const geometric_distribution<_IntType>& __x) { 96 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | bernoulli_distribution.h | 94 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 95 operator<<(basic_ostream<_CharT, _Traits>& __os, const bernoulli_distribution& __x) { 97 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | chi_squared_distribution.h | 96 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 97 operator<<(basic_ostream<_CharT, _Traits>& __os, const chi_squared_distribution<_RT>& __x) { 99 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | shuffle_order_engine.h | 130 friend basic_ostream<_CharT, _Traits>& 131 operator<<(basic_ostream<_CharT, _Traits>& __os, const shuffle_order_engine<_Eng, _Kp>& __x); 192 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 193 operator<<(basic_ostream<_CharT, _Traits>& __os, const shuffle_order_engine<_Eng, _Kp>& __x) { 195 typedef basic_ostream<_CharT, _Traits> _Ostream;
|
| H A D | weibull_distribution.h | 100 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 101 operator<<(basic_ostream<_CharT, _Traits>& __os, const weibull_distribution<_RT>& __x) { 103 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | student_t_distribution.h | 103 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 104 operator<<(basic_ostream<_CharT, _Traits>& __os, const student_t_distribution<_RT>& __x) { 106 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | exponential_distribution.h | 104 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 105 operator<<(basic_ostream<_CharT, _Traits>& __os, const exponential_distribution<_RealType>& __x) { 107 typedef basic_ostream<_CharT, _Traits> _OStream;
|
| H A D | linear_congruential_engine.h | 226 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 227 operator<<(basic_ostream<_CharT, _Traits>& __os, const linear_congruential_engine<_Up, _Ap, _Cp, _N… 313 friend basic_ostream<_CharT, _Traits>& 314 …operator<<(basic_ostream<_CharT, _Traits>& __os, const linear_congruential_engine<_Up, _Ap, _Cp, _… 358 inline _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 359 operator<<(basic_ostream<_CharT, _Traits>& __os, const linear_congruential_engine<_UIntType, __a, _… 361 typedef basic_ostream<_CharT, _Traits> _Ostream;
|
| H A D | subtract_with_carry_engine.h | 43 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 44 operator<<(basic_ostream<_CharT, _Traits>& __os, const subtract_with_carry_engine<_UInt, _Wp, _Sp, … 116 friend basic_ostream<_CharT, _Traits>& 117 …operator<<(basic_ostream<_CharT, _Traits>& __os, const subtract_with_carry_engine<_UInt, _Wp, _Sp,… 238 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>& 239 operator<<(basic_ostream<_CharT, _Traits>& __os, const subtract_with_carry_engine<_UInt, _Wp, _Sp, … 241 typedef basic_ostream<_CharT, _Traits> _Ostream;
|
| /src/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | iterator | 23 typedef basic_ostream<charT, traits> ostream_type; 47 make_ostream_joiner(basic_ostream<charT, traits>& os, DelimT&& delimiter); 78 typedef basic_ostream<char_type, traits_type> ostream_type; 112 make_ostream_joiner(basic_ostream<_CharT, _Traits>& __os, _Delim&& __d) {
|
| /src/contrib/llvm-project/libcxx/src/ |
| H A D | ios.instantiations.cpp | 23 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream<char>; variable 30 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream<wchar_t>; variable
|