Lines Matching refs:basic_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&));
45 basic_ostream& operator<<(bool n);
46 basic_ostream& operator<<(short n);
47 basic_ostream& operator<<(unsigned short n);
48 basic_ostream& operator<<(int n);
49 basic_ostream& operator<<(unsigned int n);
50 basic_ostream& operator<<(long n);
51 basic_ostream& operator<<(unsigned long n);
52 basic_ostream& operator<<(long long n);
53 basic_ostream& operator<<(unsigned long long n);
54 basic_ostream& operator<<(float f);
55 basic_ostream& operator<<(double f);
56 basic_ostream& operator<<(long double f);
57 basic_ostream& operator<<(const void* p);
58 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
59 basic_ostream& operator<<(nullptr_t);
62 basic_ostream& put(char_type c);
63 basic_ostream& write(const char_type* s, streamsize n);
64 basic_ostream& flush();
68 basic_ostream& seekp(pos_type);
69 basic_ostream& seekp(off_type, ios_base::seekdir);
71 basic_ostream(const basic_ostream& rhs) = delete;
72 basic_ostream(basic_ostream&& rhs);
74 basic_ostream& operator=(basic_ostream& rhs) = delete;
75 basic_ostream& operator=(const basic_ostream&& rhs);
76 void swap(basic_ostream& rhs);
82 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, charT);
85 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, char);
88 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, char);
93 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, signed char);
96 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, unsigned char);
100 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, const charT*);
103 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, const char*);
106 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const char*);
110 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const signed char*);
113 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const unsigned char*);
117 void swap(basic_ostream<charT, traits>& x, basic_ostream<charT, traits>& y);
120 basic_ostream<charT,traits>& endl(basic_ostream<charT,traits>& os);
123 basic_ostream<charT,traits>& ends(basic_ostream<charT,traits>& os);
126 basic_ostream<charT,traits>& flush(basic_ostream<charT,traits>& os);
151 class _LIBCPP_TEMPLATE_VIS basic_ostream
164 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb)
166 virtual ~basic_ostream();
169 basic_ostream(basic_ostream&& __rhs);
173 basic_ostream& operator=(basic_ostream&& __rhs);
176 void swap(basic_ostream& __rhs)
179 basic_ostream (const basic_ostream& __rhs) = delete;
180 basic_ostream& operator=(const basic_ostream& __rhs) = delete;
188 basic_ostream& operator<<(basic_ostream& (*__pf)(basic_ostream&))
192 basic_ostream& operator<<(basic_ios<char_type, traits_type>&
197 basic_ostream& operator<<(ios_base& (*__pf)(ios_base&))
200 basic_ostream& operator<<(bool __n);
201 basic_ostream& operator<<(short __n);
202 basic_ostream& operator<<(unsigned short __n);
203 basic_ostream& operator<<(int __n);
204 basic_ostream& operator<<(unsigned int __n);
205 basic_ostream& operator<<(long __n);
206 basic_ostream& operator<<(unsigned long __n);
207 basic_ostream& operator<<(long long __n);
208 basic_ostream& operator<<(unsigned long long __n);
209 basic_ostream& operator<<(float __f);
210 basic_ostream& operator<<(double __f);
211 basic_ostream& operator<<(long double __f);
212 basic_ostream& operator<<(const void* __p);
213 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
216 basic_ostream& operator<<(nullptr_t)
220 basic_ostream& put(char_type __c);
221 basic_ostream& write(const char_type* __s, streamsize __n);
222 basic_ostream& flush();
228 basic_ostream& seekp(pos_type __pos);
230 basic_ostream& seekp(off_type __off, ios_base::seekdir __dir);
234 basic_ostream() {} // extension, intentially does not initialize
238 class _LIBCPP_TEMPLATE_VIS basic_ostream<_CharT, _Traits>::sentry
241 basic_ostream<_CharT, _Traits>& __os_;
247 explicit sentry(basic_ostream<_CharT, _Traits>& __os);
255 basic_ostream<_CharT, _Traits>::sentry::sentry(basic_ostream<_CharT, _Traits>& __os)
268 basic_ostream<_CharT, _Traits>::sentry::~sentry()
289 basic_ostream<_CharT, _Traits>::basic_ostream(basic_ostream&& __rhs)
295 basic_ostream<_CharT, _Traits>&
296 basic_ostream<_CharT, _Traits>::operator=(basic_ostream&& __rhs)
303 basic_ostream<_CharT, _Traits>::~basic_ostream()
308 basic_ostream<_CharT, _Traits>&
309 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb)
360 basic_ostream<_CharT, _Traits>&
361 basic_ostream<_CharT, _Traits>::operator<<(bool __n)
386 basic_ostream<_CharT, _Traits>&
387 basic_ostream<_CharT, _Traits>::operator<<(short __n)
416 basic_ostream<_CharT, _Traits>&
417 basic_ostream<_CharT, _Traits>::operator<<(unsigned short __n)
442 basic_ostream<_CharT, _Traits>&
443 basic_ostream<_CharT, _Traits>::operator<<(int __n)
472 basic_ostream<_CharT, _Traits>&
473 basic_ostream<_CharT, _Traits>::operator<<(unsigned int __n)
498 basic_ostream<_CharT, _Traits>&
499 basic_ostream<_CharT, _Traits>::operator<<(long __n)
524 basic_ostream<_CharT, _Traits>&
525 basic_ostream<_CharT, _Traits>::operator<<(unsigned long __n)
550 basic_ostream<_CharT, _Traits>&
551 basic_ostream<_CharT, _Traits>::operator<<(long long __n)
576 basic_ostream<_CharT, _Traits>&
577 basic_ostream<_CharT, _Traits>::operator<<(unsigned long long __n)
602 basic_ostream<_CharT, _Traits>&
603 basic_ostream<_CharT, _Traits>::operator<<(float __n)
628 basic_ostream<_CharT, _Traits>&
629 basic_ostream<_CharT, _Traits>::operator<<(double __n)
654 basic_ostream<_CharT, _Traits>&
655 basic_ostream<_CharT, _Traits>::operator<<(long double __n)
680 basic_ostream<_CharT, _Traits>&
681 basic_ostream<_CharT, _Traits>::operator<<(const void* __n)
706 basic_ostream<_CharT, _Traits>&
707 __put_character_sequence(basic_ostream<_CharT, _Traits>& __os,
714 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
740 basic_ostream<_CharT, _Traits>&
741 operator<<(basic_ostream<_CharT, _Traits>& __os, _CharT __c)
747 basic_ostream<_CharT, _Traits>&
748 operator<<(basic_ostream<_CharT, _Traits>& __os, char __cn)
754 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
780 basic_ostream<char, _Traits>&
781 operator<<(basic_ostream<char, _Traits>& __os, char __c)
787 basic_ostream<char, _Traits>&
788 operator<<(basic_ostream<char, _Traits>& __os, signed char __c)
794 basic_ostream<char, _Traits>&
795 operator<<(basic_ostream<char, _Traits>& __os, unsigned char __c)
801 basic_ostream<_CharT, _Traits>&
802 operator<<(basic_ostream<_CharT, _Traits>& __os, const _CharT* __str)
808 basic_ostream<_CharT, _Traits>&
809 operator<<(basic_ostream<_CharT, _Traits>& __os, const char* __strn)
815 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
854 basic_ostream<char, _Traits>&
855 operator<<(basic_ostream<char, _Traits>& __os, const char* __str)
861 basic_ostream<char, _Traits>&
862 operator<<(basic_ostream<char, _Traits>& __os, const signed char* __str)
869 basic_ostream<char, _Traits>&
870 operator<<(basic_ostream<char, _Traits>& __os, const unsigned char* __str)
877 basic_ostream<_CharT, _Traits>&
878 basic_ostream<_CharT, _Traits>::put(char_type __c)
904 basic_ostream<_CharT, _Traits>&
905 basic_ostream<_CharT, _Traits>::write(const char_type* __s, streamsize __n)
928 basic_ostream<_CharT, _Traits>&
929 basic_ostream<_CharT, _Traits>::flush()
955 typename basic_ostream<_CharT, _Traits>::pos_type
956 basic_ostream<_CharT, _Traits>::tellp()
964 basic_ostream<_CharT, _Traits>&
965 basic_ostream<_CharT, _Traits>::seekp(pos_type __pos)
977 basic_ostream<_CharT, _Traits>&
978 basic_ostream<_CharT, _Traits>::seekp(off_type __off, ios_base::seekdir __dir)
991 basic_ostream<_CharT, _Traits>&
992 endl(basic_ostream<_CharT, _Traits>& __os)
1001 basic_ostream<_CharT, _Traits>&
1002 ends(basic_ostream<_CharT, _Traits>& __os)
1010 basic_ostream<_CharT, _Traits>&
1011 flush(basic_ostream<_CharT, _Traits>& __os)
1037 basic_ostream<_CharT, _Traits>&
1038 operator<<(basic_ostream<_CharT, _Traits>& __os,
1045 basic_ostream<_CharT, _Traits>&
1046 operator<<(basic_ostream<_CharT, _Traits>& __os,
1054 basic_ostream<_CharT, _Traits>&
1055 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __ec)
1062 basic_ostream<_CharT, _Traits>&
1063 operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p)
1072 …is_same<void, typename __void_t<decltype((declval<basic_ostream<_CharT, _Traits>&>() << declval<ty…
1073 basic_ostream<_CharT, _Traits>&
1075 operator<<(basic_ostream<_CharT, _Traits>& __os, unique_ptr<_Yp, _Dp> const& __p)
1081 basic_ostream<_CharT, _Traits>&
1082 operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Size>& __x)
1089 _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_ostream<char>)
1090 _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_ostream<wchar_t>)