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<<(const volatile void* val); // C++23
59 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
60 basic_ostream& operator<<(nullptr_t);
63 basic_ostream& put(char_type c);
64 basic_ostream& write(const char_type* s, streamsize n);
65 basic_ostream& flush();
69 basic_ostream& seekp(pos_type);
70 basic_ostream& seekp(off_type, ios_base::seekdir);
72 basic_ostream(const basic_ostream& rhs) = delete;
73 basic_ostream(basic_ostream&& rhs);
75 basic_ostream& operator=(basic_ostream& rhs) = delete;
76 basic_ostream& operator=(const basic_ostream&& rhs);
77 void swap(basic_ostream& rhs);
83 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, charT);
86 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, char);
89 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, char);
94 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, signed char);
97 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, unsigned char);
101 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, const charT*);
104 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, const char*);
107 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const char*);
111 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const signed char*);
114 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const unsigned char*);
118 void swap(basic_ostream<charT, traits>& x, basic_ostream<charT, traits>& y);
121 basic_ostream<charT,traits>& endl(basic_ostream<charT,traits>& os);
124 basic_ostream<charT,traits>& ends(basic_ostream<charT,traits>& os);
127 basic_ostream<charT,traits>& flush(basic_ostream<charT,traits>& os);
134 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, wchar_t) = delete; …
136 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, char8_t) = delete; …
138 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, char16_t) = delete; …
140 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, char32_t) = delete; …
142 basic_ostream<wchar_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char8_t) = delete; …
144 basic_ostream<wchar_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char16_t) = delete; …
146 basic_ostream<wchar_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char32_t) = delete; …
148 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, const wchar_t*) = delete; …
150 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, const char8_t*) = delete; …
152 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, const char16_t*) = delete; …
154 basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>&, const char32_t*) = delete; …
156 basic_ostream<wchar_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, const char8_t*) = delet…
158 basic_ostream<wchar_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, const char16_t*) = dele…
160 basic_ostream<wchar_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, const char32_t*) = dele…
177 #include <__ostream/basic_ostream.h>