Lines Matching refs:toStream
1546 void toStream(std::ostream* s, const T& value) {
1551 DOCTEST_INTERFACE void toStream(std::ostream* s, char* in);
1552 DOCTEST_INTERFACE void toStream(std::ostream* s, const char* in);
1554 DOCTEST_INTERFACE void toStream(std::ostream* s, bool in);
1555 DOCTEST_INTERFACE void toStream(std::ostream* s, float in);
1556 DOCTEST_INTERFACE void toStream(std::ostream* s, double in);
1557 DOCTEST_INTERFACE void toStream(std::ostream* s, double long in);
1559 DOCTEST_INTERFACE void toStream(std::ostream* s, char in);
1560 DOCTEST_INTERFACE void toStream(std::ostream* s, char signed in);
1561 DOCTEST_INTERFACE void toStream(std::ostream* s, char unsigned in);
1562 DOCTEST_INTERFACE void toStream(std::ostream* s, int short in);
1563 DOCTEST_INTERFACE void toStream(std::ostream* s, int short unsigned in);
1564 DOCTEST_INTERFACE void toStream(std::ostream* s, int in);
1565 DOCTEST_INTERFACE void toStream(std::ostream* s, int unsigned in);
1566 DOCTEST_INTERFACE void toStream(std::ostream* s, int long in);
1567 DOCTEST_INTERFACE void toStream(std::ostream* s, int long unsigned in);
1568 DOCTEST_INTERFACE void toStream(std::ostream* s, int long long in);
1569 DOCTEST_INTERFACE void toStream(std::ostream* s, int long long unsigned in);
1605 toStream(m_stream, in);
4122 void toStream(std::ostream* s, char* in) { *s << in; }
4123 void toStream(std::ostream* s, const char* in) { *s << in; }
4125 void toStream(std::ostream* s, bool in) { *s << std::boolalpha << in << std::noboolalpha; }
4126 void toStream(std::ostream* s, float in) { *s << in; }
4127 void toStream(std::ostream* s, double in) { *s << in; }
4128 void toStream(std::ostream* s, double long in) { *s << in; }
4130 void toStream(std::ostream* s, char in) { *s << in; }
4131 void toStream(std::ostream* s, char signed in) { *s << in; }
4132 void toStream(std::ostream* s, char unsigned in) { *s << in; }
4133 void toStream(std::ostream* s, int short in) { *s << in; }
4134 void toStream(std::ostream* s, int short unsigned in) { *s << in; }
4135 void toStream(std::ostream* s, int in) { *s << in; }
4136 void toStream(std::ostream* s, int unsigned in) { *s << in; }
4137 void toStream(std::ostream* s, int long in) { *s << in; }
4138 void toStream(std::ostream* s, int long unsigned in) { *s << in; }
4139 void toStream(std::ostream* s, int long long in) { *s << in; }
4140 void toStream(std::ostream* s, int long long unsigned in) { *s << in; }