Lines Matching refs:to
39 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); } in Bundle() argument
62 TextOutput& endl(TextOutput& to);
63 TextOutput& indent(TextOutput& to);
64 TextOutput& dedent(TextOutput& to);
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);
126 inline TextOutput& endl(TextOutput& to) in endl() argument
128 to.print("\n", 1); in endl()
129 return to; in endl()
132 inline TextOutput& indent(TextOutput& to) in indent() argument
134 to.moveIndent(1); in indent()
135 return to; in indent()
138 inline TextOutput& dedent(TextOutput& to) in dedent() argument
140 to.moveIndent(-1); in dedent()
141 return to; in dedent()
144 inline TextOutput& operator<<(TextOutput& to, const char* str)
146 to.print(str, strlen(str));
147 return to;
150 inline TextOutput& operator<<(TextOutput& to, char c)
152 to.print(&c, 1);
153 return to;
156 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func)
158 return (*func)(to);