Lines Matching full:operator
66 TextOutput& operator<<(TextOutput& to, const char* str);
67 TextOutput& operator<<(TextOutput& to, char); // writes raw character
68 TextOutput& operator<<(TextOutput& to, bool);
69 TextOutput& operator<<(TextOutput& to, int);
70 TextOutput& operator<<(TextOutput& to, long);
71 TextOutput& operator<<(TextOutput& to, unsigned int);
72 TextOutput& operator<<(TextOutput& to, unsigned long);
73 TextOutput& operator<<(TextOutput& to, long long);
74 TextOutput& operator<<(TextOutput& to, unsigned long long);
75 TextOutput& operator<<(TextOutput& to, float);
76 TextOutput& operator<<(TextOutput& to, double);
77 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
78 TextOutput& operator<<(TextOutput& to, const void*);
92 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
121 TextOutput& operator<<(TextOutput& to, const HexDump& val);
144 inline TextOutput& operator<<(TextOutput& to, const char* str)
150 inline TextOutput& operator<<(TextOutput& to, char c)
156 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func)