Home
last modified time | relevance | path

Searched refs:basic_ostream (Results 1 – 25 of 65) sorted by relevance

123

/src/contrib/llvm-project/libcxx/include/
H A Dostream17 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 Diomanip71 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 Dchrono218 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 Drandom66 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 Dsyncstream80 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 Dbasic_ostream.h40 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 Dostream.h49 _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 Dostream.h22 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 Ddiscrete_distribution.h68 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 Dlognormal_distribution.h102 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 Ddiscard_block_engine.h105 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 Dnormal_distribution.h100 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 Dpiecewise_constant_distribution.h72 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 Dpiecewise_linear_distribution.h72 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 Dgeometric_distribution.h93 _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 Dbernoulli_distribution.h94 _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 Dchi_squared_distribution.h96 _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 Dshuffle_order_engine.h130 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 Dweibull_distribution.h100 _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 Dstudent_t_distribution.h103 _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 Dexponential_distribution.h104 _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 Dlinear_congruential_engine.h226 _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 Dsubtract_with_carry_engine.h43 _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 Diterator23 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 Dios.instantiations.cpp23 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream<char>; variable
30 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream<wchar_t>; variable

123