Lines Matching refs:StreamWrapper
18 StreamWrapper outs() { return {std::addressof(std::cout)}; } in outs()
20 template <typename T> StreamWrapper &StreamWrapper::operator<<(T t) { in operator <<()
27 template StreamWrapper &StreamWrapper::operator<<<void *>(void *t);
28 template StreamWrapper &StreamWrapper::operator<<<const char *>(const char *t);
29 template StreamWrapper &StreamWrapper::operator<<<char *>(char *t);
30 template StreamWrapper &StreamWrapper::operator<<<char>(char t);
31 template StreamWrapper &StreamWrapper::operator<<<short>(short t);
32 template StreamWrapper &StreamWrapper::operator<<<int>(int t);
33 template StreamWrapper &StreamWrapper::operator<<<long>(long t);
34 template StreamWrapper &StreamWrapper::operator<<<long long>(long long t);
35 template StreamWrapper &
36 StreamWrapper::operator<<<unsigned char>(unsigned char t);
37 template StreamWrapper &
38 StreamWrapper::operator<<<unsigned short>(unsigned short t);
39 template StreamWrapper &StreamWrapper::operator<<<unsigned int>(unsigned int t);
40 template StreamWrapper &
41 StreamWrapper::operator<<<unsigned long>(unsigned long t);
42 template StreamWrapper &
43 StreamWrapper::operator<<<unsigned long long>(unsigned long long t);
44 template StreamWrapper &StreamWrapper::operator<<<bool>(bool t);
45 template StreamWrapper &StreamWrapper::operator<<<std::string>(std::string t);